资源走oss
@@ -7,7 +7,7 @@
|
|||||||
name="description"
|
name="description"
|
||||||
content="NianXX 智念科技是一家企业级 AI 落地服务公司,专注于旅行社、景区、酒店和教育机构。"
|
content="NianXX 智念科技是一家企业级 AI 落地服务公司,专注于旅行社、景区、酒店和教育机构。"
|
||||||
/>
|
/>
|
||||||
<link rel="icon" type="image/png" href="/favicon.png" />
|
<link rel="icon" type="image/png" href="https://oss.nianxx.cn/config/favicon.png" />
|
||||||
<title>NianXX 智念科技</title>
|
<title>NianXX 智念科技</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
22
oss-upload/config/UPLOAD_MANIFEST.md
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# OSS Upload Manifest
|
||||||
|
|
||||||
|
Upload every file in this directory to the OSS prefix:
|
||||||
|
|
||||||
|
`https://oss.nianxx.cn/config/`
|
||||||
|
|
||||||
|
Expected URLs:
|
||||||
|
|
||||||
|
- `https://oss.nianxx.cn/config/favicon.png`
|
||||||
|
- `https://oss.nianxx.cn/config/hero-poster.jpg`
|
||||||
|
- `https://oss.nianxx.cn/config/hero-video.mp4`
|
||||||
|
- `https://oss.nianxx.cn/config/logo-black.png`
|
||||||
|
- `https://oss.nianxx.cn/config/logo-main.png`
|
||||||
|
- `https://oss.nianxx.cn/config/logo-white.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-01-workflow-rebuild.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-02-enterprise-data-ontology.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-02-enterprise-ontology.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-03-agent-message-center.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-03-agent-platform.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-03-aigc-engine.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-04-ai-behavior-audit.png`
|
||||||
|
- `https://oss.nianxx.cn/config/method-04-ai-work-log.png`
|
||||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 146 KiB |
BIN
oss-upload/config/logo-black.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
oss-upload/config/logo-main.png
Normal file
|
After Width: | Height: | Size: 68 KiB |
BIN
oss-upload/config/logo-white.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
oss-upload/config/method-01-workflow-rebuild.png
Normal file
|
After Width: | Height: | Size: 617 KiB |
BIN
oss-upload/config/method-02-enterprise-data-ontology.png
Normal file
|
After Width: | Height: | Size: 760 KiB |
BIN
oss-upload/config/method-02-enterprise-ontology.png
Normal file
|
After Width: | Height: | Size: 464 KiB |
BIN
oss-upload/config/method-03-agent-message-center.png
Normal file
|
After Width: | Height: | Size: 2.2 MiB |
BIN
oss-upload/config/method-03-agent-platform.png
Normal file
|
After Width: | Height: | Size: 310 KiB |
BIN
oss-upload/config/method-03-aigc-engine.png
Normal file
|
After Width: | Height: | Size: 890 KiB |
BIN
oss-upload/config/method-04-ai-behavior-audit.png
Normal file
|
After Width: | Height: | Size: 402 KiB |
BIN
oss-upload/config/method-04-ai-work-log.png
Normal file
|
After Width: | Height: | Size: 677 KiB |
@@ -1,43 +1,38 @@
|
|||||||
import mainLogo from "./brand/logo-main.png";
|
const ossBaseUrl = "https://oss.nianxx.cn/config";
|
||||||
import blackLogo from "./brand/logo-black.png";
|
|
||||||
import whiteLogo from "./brand/logo-white.png";
|
const ossAsset = (fileName: string) => `${ossBaseUrl}/${fileName}`;
|
||||||
import method01WorkflowRebuild from "./media/method/method-01-workflow-rebuild.png";
|
|
||||||
import method02EnterpriseDataOntology from "./media/method/method-02-enterprise-data-ontology.png";
|
|
||||||
import method02EnterpriseOntology from "./media/method/method-02-enterprise-ontology.png";
|
|
||||||
import method03AgentMessageCenter from "./media/method/method-03-agent-message-center.png";
|
|
||||||
import method03AgentPlatform from "./media/method/method-03-agent-platform.png";
|
|
||||||
import method03AigcEngine from "./media/method/method-03-aigc-engine.png";
|
|
||||||
import method04AiBehaviorAudit from "./media/method/method-04-ai-behavior-audit.png";
|
|
||||||
import method04AiWorkLog from "./media/method/method-04-ai-work-log.png";
|
|
||||||
|
|
||||||
export const logos = {
|
export const logos = {
|
||||||
main: mainLogo,
|
main: ossAsset("logo-main.png"),
|
||||||
black: blackLogo,
|
black: ossAsset("logo-black.png"),
|
||||||
white: whiteLogo,
|
white: ossAsset("logo-white.png"),
|
||||||
};
|
};
|
||||||
|
|
||||||
export const media = {
|
export const media = {
|
||||||
hero: "/hero-poster.jpg",
|
hero: ossAsset("hero-poster.jpg"),
|
||||||
heroVideo: "/hero-video.mp4?v=noaudio",
|
heroVideo: `${ossAsset("hero-video.mp4")}?v=noaudio`,
|
||||||
onsite:
|
onsite:
|
||||||
"https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=82",
|
"https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=82",
|
||||||
onsiteScreens: [method01WorkflowRebuild],
|
onsiteScreens: [ossAsset("method-01-workflow-rebuild.png")],
|
||||||
knowledge:
|
knowledge:
|
||||||
"https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=82",
|
"https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1200&q=82",
|
||||||
knowledgeScreens: [
|
knowledgeScreens: [
|
||||||
method02EnterpriseOntology,
|
ossAsset("method-02-enterprise-ontology.png"),
|
||||||
method02EnterpriseDataOntology,
|
ossAsset("method-02-enterprise-data-ontology.png"),
|
||||||
],
|
],
|
||||||
workflow:
|
workflow:
|
||||||
"https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=82",
|
"https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=82",
|
||||||
workflowScreens: [
|
workflowScreens: [
|
||||||
method03AgentPlatform,
|
ossAsset("method-03-agent-platform.png"),
|
||||||
method03AgentMessageCenter,
|
ossAsset("method-03-agent-message-center.png"),
|
||||||
method03AigcEngine,
|
ossAsset("method-03-aigc-engine.png"),
|
||||||
],
|
],
|
||||||
audit:
|
audit:
|
||||||
"https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=82",
|
"https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=82",
|
||||||
auditScreens: [method04AiBehaviorAudit, method04AiWorkLog],
|
auditScreens: [
|
||||||
|
ossAsset("method-04-ai-behavior-audit.png"),
|
||||||
|
ossAsset("method-04-ai-work-log.png"),
|
||||||
|
],
|
||||||
travel:
|
travel:
|
||||||
"https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=82",
|
"https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=82",
|
||||||
scenic:
|
scenic:
|
||||||
|
|||||||