checkpoint: before i18n implementation
This commit is contained in:
+179
-37
@@ -6,63 +6,205 @@ export interface BlogPost {
|
||||
category: string
|
||||
image: string
|
||||
imageAlt: string
|
||||
sections: Array<{
|
||||
title: string
|
||||
paragraphs: string[]
|
||||
}>
|
||||
}
|
||||
|
||||
export const BLOG_CATEGORIES = ["All", "Trends", "Applications", "Ethics"] as const
|
||||
export const BLOG_CATEGORIES = ["全部", "产品定位", "Agent", "平台能力"] as const
|
||||
|
||||
export const BLOG_POSTS: BlogPost[] = [
|
||||
{
|
||||
slug: "ai-powered-predictive-models-and-their-impact-across-industries",
|
||||
title: "AI-powered predictive models and their impact across industries",
|
||||
excerpt: "Lorem ipsum dolor sit amet consectetur sit mi lacus quis vitae sed pellentesque libero ultricies neque.",
|
||||
date: "Jun, 2025",
|
||||
category: "Trends",
|
||||
slug: "why-dal-code-is-an-intent-to-code-platform",
|
||||
title: "为什么 DAL Code 不是另一个 AI IDE,而是 Intent-to-Code Platform",
|
||||
excerpt: "从“用户先写 prompt”转向“AI 先把需求问清楚”,这是 DAL Code 和传统 AI IDE 的分水岭。",
|
||||
date: "2026-04",
|
||||
category: "产品定位",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e7e2a643b738b2cb06fc_ai-powered-predictive-models-and-their-impact-thumbnail-quantum-webflow-template.png",
|
||||
imageAlt: "AI-powered predictive models and their impact across industries",
|
||||
imageAlt: "DAL Code intent to code platform",
|
||||
sections: [
|
||||
{
|
||||
title: "意图鸿沟才是真问题",
|
||||
paragraphs: [
|
||||
"大多数 AI 编程工具默认用户已经知道该怎么表达技术需求,于是产品体验围绕 prompt、diff 和代码修改展开。",
|
||||
"DAL Code 从一开始就把问题重新定义为意图捕获:当用户只知道业务目标时,AI 应该主动发问、缩小模糊空间,再进入工程执行。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "从编辑器思维转向任务思维",
|
||||
paragraphs: [
|
||||
"传统 IDE 的核心工作单元是文件和函数,DAL Code 的核心工作单元是带上下文、约束和验收标准的任务。",
|
||||
"这也是为什么 DAL Code 不止输出代码,还要输出测试、文档、执行步骤和审批节点。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "官网为什么先强调这个",
|
||||
paragraphs: [
|
||||
"如果官网只讲 Agent、多模型和插件,用户会自然把它理解成另一个 Cursor。",
|
||||
"把产品隐喻讲清楚,后面的 Mission Mode、Skills 和多模型路由才有一致的解释框架。",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "how-ai-is-shaping-the-future-of-healthcare-and-medicine",
|
||||
title: "How AI is shaping the future of healthcare and medicine",
|
||||
excerpt: "Lorem ipsum dolor sit amet consectetur sit mi lacus quis vitae sed pellentesque libero ultricies neque.",
|
||||
date: "Jun, 2025",
|
||||
category: "Applications",
|
||||
slug: "inside-the-dal-code-mission-mode",
|
||||
title: "Mission Mode 背后到底在做什么",
|
||||
excerpt: "Mission Mode 不是一次长对话,而是一次可分解、可追踪、可审批的工程执行流程。",
|
||||
date: "2026-04",
|
||||
category: "Agent",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e7c24025d4081cbfa426_how-ai-is-shaping-the-future-thumbnail-quantum-webflow-template.png",
|
||||
imageAlt: "How AI is shaping the future of healthcare and medicine",
|
||||
imageAlt: "Mission mode workflow",
|
||||
sections: [
|
||||
{
|
||||
title: "任务不是一句话结束的",
|
||||
paragraphs: [
|
||||
"用户输入一个目标后,DAL Code 先匹配适合的 Skill,再通过 intake questions 把目标变成结构化需求。",
|
||||
"只有需求足够清晰,任务拆解、工具编排和最终审批才不会失真。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "自主执行不等于黑盒",
|
||||
paragraphs: [
|
||||
"Mission Mode 会把计划、上下文压缩、工具调用和权限请求拆到可追踪的步骤上。",
|
||||
"这和纯云端黑盒 Agent 的差别很大:用户既能中途干预,也能在结果阶段看到真实的工程边界。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "为什么它适合团队",
|
||||
paragraphs: [
|
||||
"团队要的不是单次惊艳,而是可解释的长期协作能力。",
|
||||
"Mission Mode 的价值在于把“AI 做了什么、为什么这样做、需要谁审批”都保留下来。",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "the-role-of-transparency-in-ai-development-and-innovation",
|
||||
title: "The role of transparency in AI development and innovation",
|
||||
excerpt: "Lorem ipsum dolor sit amet consectetur sit mi lacus quis vitae sed pellentesque libero ultricies neque.",
|
||||
date: "Jun, 2025",
|
||||
category: "Ethics",
|
||||
slug: "smart-routing-is-a-product-advantage-not-a-model-switcher",
|
||||
title: "多模型智能路由不是模型切换器,而是产品能力",
|
||||
excerpt: "同一条工作流里,补全、代码审查、网页抓取和长任务规划不该强行使用同一个模型。",
|
||||
date: "2026-04",
|
||||
category: "平台能力",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e7967b59be67bb3b9a64_the-role-of-transparency-in-ai-thumbnail-quantum-webflow-template.png",
|
||||
imageAlt: "The role of transparency in AI development and innovation",
|
||||
imageAlt: "Smart model routing in DAL Code",
|
||||
sections: [
|
||||
{
|
||||
title: "路由不是装饰层",
|
||||
paragraphs: [
|
||||
"如果模型选择还要靠用户手动下拉,产品就没有真正把复杂性接过去。",
|
||||
"DAL Code 把任务类型、上下文长度、成本预算和延迟阈值都变成路由输入,而不是让用户自己猜。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "团队收益来自一致性",
|
||||
paragraphs: [
|
||||
"真正有价值的不是“能选 20+ 模型”,而是“同一套策略能在团队内稳定复用”。",
|
||||
"这样才能把模型成本、成功率和审批路径统一管理起来。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "这也是中国市场机会",
|
||||
paragraphs: [
|
||||
"很多国际产品要么模型单一,要么对中文开发者工作流支持不足。",
|
||||
"DAL Code 的差异化之一,就是把本地化、路由和工程交付作为同一个产品问题来解。",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "revolutionizing-business-insights-with-ai-data-analytics",
|
||||
title: "Revolutionizing business insights with AI data analytics",
|
||||
excerpt: "Lorem ipsum dolor sit amet consectetur sit mi lacus quis vitae sed pellentesque libero ultricies neque.",
|
||||
date: "Jun, 2025",
|
||||
category: "Applications",
|
||||
slug: "how-skills-turn-experience-into-reusable-workflows",
|
||||
title: "Skills 为什么不是 prompt 模板,而是经验封装",
|
||||
excerpt: "DAL Code 想沉淀的不是单次对话,而是可复用、可组合、可交易的工作流资产。",
|
||||
date: "2026-04",
|
||||
category: "平台能力",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e766a2a14a56c3716545_revolutionizing-business-insights-with-ai-thumbnail-quantum-webflow-template.png",
|
||||
imageAlt: "Revolutionizing business insights with AI data analytics",
|
||||
imageAlt: "Skills ecosystem for DAL Code",
|
||||
sections: [
|
||||
{
|
||||
title: "prompt 模板解决不了交付一致性",
|
||||
paragraphs: [
|
||||
"模板只能复用一段话,却无法复用提问顺序、默认值、验证规则和工具执行顺序。",
|
||||
"Skills 的意义在于把这些隐性经验显式化,变成可安装的产品单元。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "技能系统为什么能形成护城河",
|
||||
paragraphs: [
|
||||
"每次 Skill 被使用,DAL Code 都在积累哪类问题最有效、哪类执行顺序最稳定。",
|
||||
"这是一种真正会越用越强的数据飞轮,而不是单纯堆更多提示词。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "对官网的含义",
|
||||
paragraphs: [
|
||||
"官网不能只把 Skills 写成一个点状功能。",
|
||||
"它应该被用户理解为 DAL Code 从工具走向平台的关键桥梁。",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "how-ai-is-optimizing-business-operations-for-maximum-efficiency",
|
||||
title: "How AI is optimizing business operations for maximum efficiency",
|
||||
excerpt: "Lorem ipsum dolor sit amet consectetur sit mi lacus quis vitae sed pellentesque libero ultricies neque.",
|
||||
date: "Jun, 2025",
|
||||
category: "Trends",
|
||||
slug: "what-open-core-means-for-ai-coding-products",
|
||||
title: "AI 编程产品为什么需要 Open Core 的信任结构",
|
||||
excerpt: "在涉及代码、终端、权限和企业知识库的场景里,透明度不是加分项,而是进入门槛。",
|
||||
date: "2026-04",
|
||||
category: "产品定位",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e73c22149c3c4d1276f2_how-ai-is-optimizing-business-thumbnail-quantum-webflow-template.png",
|
||||
imageAlt: "How AI is optimizing business operations for maximum efficiency",
|
||||
imageAlt: "Open core trust model",
|
||||
sections: [
|
||||
{
|
||||
title: "为什么不是全闭源",
|
||||
paragraphs: [
|
||||
"当 AI 需要读代码、改文件、跑命令时,用户天然会关心它到底看到了什么、能做什么。",
|
||||
"客户端开源把最敏感的交互层暴露给用户审视,这是建立信任的最短路径。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "为什么也不是全部开源",
|
||||
paragraphs: [
|
||||
"DAL Code 的差异化很大一部分来自 Agent 引擎、上下文压缩、路由和知识层的长期工程积累。",
|
||||
"Open Core 允许公开信任边界,同时保留真正难复制的智能层能力。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "这会影响商业化吗",
|
||||
paragraphs: [
|
||||
"不会,反而更清晰。个人开发者先因为透明和易用进入产品,企业客户再因为私有化和治理能力付费。",
|
||||
"这也是产品文案里必须同时出现开源信任和企业方案的原因。",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "ethical-ai-and-the-balance-between-innovation-and-responsibilities",
|
||||
title: "Ethical AI and the balance between innovation and responsibility",
|
||||
excerpt: "Lorem ipsum dolor sit amet consectetur sit mi lacus quis vitae sed pellentesque libero ultricies neque.",
|
||||
date: "Jun, 2025",
|
||||
category: "Ethics",
|
||||
slug: "building-a-chinese-first-ai-engineering-workspace",
|
||||
title: "做一个中文开发者优先的 AI Engineering Workspace",
|
||||
excerpt: "中文优先不是把界面翻译成中文,而是把提问方式、文档语境和社区支持一起本地化。",
|
||||
date: "2026-04",
|
||||
category: "平台能力",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e640d87281a090067c41_ethical-ai-and-the-balance-between-thumbnail-quantum-webflow-template.png",
|
||||
imageAlt: "Ethical AI and the balance between innovation and responsibility",
|
||||
imageAlt: "Chinese-first developer experience",
|
||||
sections: [
|
||||
{
|
||||
title: "为什么这不是 UI 层问题",
|
||||
paragraphs: [
|
||||
"很多国际产品只有英文信息架构,中文用户即使看懂了界面,也很难把真实需求表达精确。",
|
||||
"DAL Code 的本地化重点在于问答路径、默认示例、文档引用和协作语气都服务于中文工作流。",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "本地化和专业度不冲突",
|
||||
paragraphs: [
|
||||
"中文优先不意味着弱化技术深度,而是把专业能力交付给更多原本不擅长写 prompt 的用户。",
|
||||
"这也是 DAL Code 想覆盖独立开发者、团队 Lead 和非技术创业者的基础。 ",
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "对官网的直接要求",
|
||||
paragraphs: [
|
||||
"官网首版就应该说中文,但保留关键技术术语,让用户一眼知道产品是为谁设计的。",
|
||||
"产品站的语气和结构,本身就是定位的一部分。",
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
+70
-23
@@ -5,39 +5,86 @@ export interface Career {
|
||||
location: string
|
||||
type: string
|
||||
description: string
|
||||
responsibilities: string[]
|
||||
requirements: string[]
|
||||
outcome: string
|
||||
}
|
||||
|
||||
export const CAREERS: Career[] = [
|
||||
{
|
||||
slug: "ai-research-scientist",
|
||||
title: "AI Research Scientist",
|
||||
department: "Research",
|
||||
location: "New York, NY",
|
||||
type: "Full time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
slug: "agent-runtime-engineer",
|
||||
title: "Agent Runtime Engineer",
|
||||
department: "Agent Engine",
|
||||
location: "Remote / Shanghai",
|
||||
type: "优先建设方向",
|
||||
description: "负责 DAL Code 的任务执行、工具编排、权限流和长任务稳定性,让 Agent 从“能跑”走向“可托付”。",
|
||||
responsibilities: [
|
||||
"推进 query loop、tool orchestration、权限审批与恢复机制的稳定性",
|
||||
"把复杂任务拆成可观测、可回滚、可验证的执行单元",
|
||||
"和产品设计一起定义 Mission Mode 的用户可见行为",
|
||||
],
|
||||
requirements: [
|
||||
"熟悉 TypeScript 后端、异步流程控制和任务状态机",
|
||||
"对 Agent 失败模式、上下文管理和安全边界有工程判断",
|
||||
"能把抽象能力落成稳定的产品行为,而不是 demo",
|
||||
],
|
||||
outcome: "让 DAL Code 的 Agent 能在真实项目里长期可靠地工作。",
|
||||
},
|
||||
{
|
||||
slug: "machine-learning-engineer",
|
||||
title: "Machine Learning Engineer",
|
||||
department: "Research",
|
||||
location: "Los Angeles, CA",
|
||||
type: "Part time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
slug: "desktop-ide-engineer",
|
||||
title: "Desktop IDE Engineer",
|
||||
department: "Developer Experience",
|
||||
location: "Remote / Shanghai",
|
||||
type: "优先建设方向",
|
||||
description: "负责 Electron + VS Code Fork 的体验收口,把 Agent 能力带进真正可日常使用的 IDE 工作流。",
|
||||
responsibilities: [
|
||||
"完善 Composer、Diff 审批、Terminal、搜索和设置体系",
|
||||
"把私有 Agent 能力和开源客户端边界处理清楚",
|
||||
"持续提升性能、稳定性和与上游 VS Code 的对齐策略",
|
||||
],
|
||||
requirements: [
|
||||
"熟悉 Electron、React、VS Code 扩展或 IDE 产品工程",
|
||||
"愿意处理复杂状态、性能和边界兼容问题",
|
||||
"对开发者工具的细节质量有较高要求",
|
||||
],
|
||||
outcome: "让 DAL Code 不只会自动写代码,也值得被开发者长期打开。",
|
||||
},
|
||||
{
|
||||
slug: "ai-infrastructure-engineer",
|
||||
title: "AI Infrastructure Engineer",
|
||||
department: "Engineering",
|
||||
slug: "multi-model-routing-engineer",
|
||||
title: "Multi-Model Routing Engineer",
|
||||
department: "Platform Intelligence",
|
||||
location: "Remote",
|
||||
type: "Part time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
type: "优先建设方向",
|
||||
description: "负责多模型能力矩阵、路由策略与降级机制,把 DeepAILab 的模型平台能力真正产品化。",
|
||||
responsibilities: [
|
||||
"设计任务分类与模型能力评分体系",
|
||||
"构建路由策略、超时降级和成本控制逻辑",
|
||||
"用真实任务反馈持续优化成功率与稳定性",
|
||||
],
|
||||
requirements: [
|
||||
"熟悉 LLM 产品、评测体系或推理服务工程",
|
||||
"理解延迟、成本、质量三者之间的权衡",
|
||||
"能用数据而不是感觉做路由决策",
|
||||
],
|
||||
outcome: "让 DAL Code 在不同任务里始终选到更合适的模型。",
|
||||
},
|
||||
{
|
||||
slug: "mlops-engineer",
|
||||
title: "MLOps Engineer",
|
||||
department: "Engineering",
|
||||
location: "Remote",
|
||||
type: "Full time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
slug: "ai-product-designer",
|
||||
title: "AI Product Designer",
|
||||
department: "Intent UX",
|
||||
location: "Remote / Shanghai",
|
||||
type: "优先建设方向",
|
||||
description: "负责 DAL Code 的意图捕获体验,把复杂 AI 能力转成清晰、可信、中文开发者友好的交互流程。",
|
||||
responsibilities: [
|
||||
"设计 intake questions、Mission Mode 和审批流的界面结构",
|
||||
"把产品定位、品牌语气和协作流程统一成一套体验语言",
|
||||
"和工程一起把视觉、动效与真实能力对应起来",
|
||||
],
|
||||
requirements: [
|
||||
"有复杂工具产品、开发者产品或 AI 产品设计经验",
|
||||
"能同时理解用户研究、信息架构和工程实现约束",
|
||||
"对中文产品表达和交互质感敏感",
|
||||
],
|
||||
outcome: "让 DAL Code 在复杂能力之上依然保持低门槛与高信任。",
|
||||
},
|
||||
]
|
||||
|
||||
@@ -0,0 +1,284 @@
|
||||
export interface NavLink {
|
||||
href: string
|
||||
label: string
|
||||
}
|
||||
|
||||
export interface LinkGroup {
|
||||
title: string
|
||||
links: NavLink[]
|
||||
}
|
||||
|
||||
export interface StatItem {
|
||||
value: string
|
||||
label: string
|
||||
}
|
||||
|
||||
export interface IntegrationItem {
|
||||
label: string
|
||||
icon: string
|
||||
}
|
||||
|
||||
export interface PrincipleItem {
|
||||
title: string
|
||||
description: string
|
||||
animation: string
|
||||
}
|
||||
|
||||
export interface ValueItem {
|
||||
title: string
|
||||
icon: string
|
||||
}
|
||||
|
||||
export interface PersonaItem {
|
||||
title: string
|
||||
description: string
|
||||
}
|
||||
|
||||
export interface ContactChannel {
|
||||
title: string
|
||||
value: string
|
||||
description: string
|
||||
href: string
|
||||
}
|
||||
|
||||
export interface FaqItem {
|
||||
question: string
|
||||
answer: string
|
||||
}
|
||||
|
||||
export const SITE_NAME = "DAL Code"
|
||||
export const SITE_BRAND = "DAL Code by DeepAILab"
|
||||
export const SITE_TAGLINE = "AI-Guided Intent-to-Code Platform"
|
||||
export const SITE_DESCRIPTION =
|
||||
"让模糊需求先被 AI 问清楚,再把它变成代码、测试、文档和可审核的工程结果。"
|
||||
|
||||
export const NAV_LINKS: NavLink[] = [
|
||||
{ href: "/", label: "首页" },
|
||||
{ href: "/about", label: "产品定位" },
|
||||
{ href: "/blog", label: "洞察" },
|
||||
{ href: "/contact", label: "联系" },
|
||||
]
|
||||
|
||||
export const NAV_GROUPS: LinkGroup[] = [
|
||||
{
|
||||
title: "产品",
|
||||
links: [
|
||||
{ href: "/", label: "首页" },
|
||||
{ href: "/about", label: "为什么是 DAL Code" },
|
||||
{ href: "/contact", label: "申请试用" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "内容",
|
||||
links: [
|
||||
{ href: "/blog", label: "产品洞察" },
|
||||
{ href: "/careers", label: "建设中的角色" },
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
export const FOOTER_GROUPS: LinkGroup[] = [
|
||||
{
|
||||
title: "产品",
|
||||
links: [
|
||||
{ href: "/", label: "首页" },
|
||||
{ href: "/about", label: "定位与能力" },
|
||||
{ href: "/contact", label: "联系团队" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "资源",
|
||||
links: [
|
||||
{ href: "/blog", label: "产品文章" },
|
||||
{ href: "/careers", label: "角色方向" },
|
||||
{ href: "/coming-soon", label: "路线图" },
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
export const COMPANY_STATS: StatItem[] = [
|
||||
{ value: "20+", label: "可智能路由的模型" },
|
||||
{ value: "3", label: "协作模式" },
|
||||
{ value: "5", label: "上下文压缩层级" },
|
||||
{ value: "Open", label: "客户端开源策略" },
|
||||
]
|
||||
|
||||
export const INTEGRATION_ITEMS: IntegrationItem[] = [
|
||||
{
|
||||
label: "Desktop IDE",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6dd871d459c0979566_integration-icon-01-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Web Workspace",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6cf5972224012a489b_integration-icon-02-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Mobile Review",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6c26ffe1a8726e9533_integration-icon-03-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Mission Planner",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6cf394ef82f934055b_integration-icon-04-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Skills Engine",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6c880d199c46c914ff_integration-icon-05-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Context Engine",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b70c337055b4648809b_integration-icon-06-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "RAG",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b70e3d7d6153e132c82_integration-icon-07-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Terminal + Git",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b70d20bb145ee19163a_integration-icon-08-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Diff Review",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6e0bb9fa69c599d6b3_integration-icon-10-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Permission Flow",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b70a151641726e87b52_integration-icon-11-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Tool Runtime",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6e925ff15bf5fa0586_integration-icon-12-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
label: "Private Deploy",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68cd8b6de0050ea1d7414790_integration-icon-13-quantum-webflow-template.svg",
|
||||
},
|
||||
]
|
||||
|
||||
export const HOME_PRINCIPLES: PrincipleItem[] = [
|
||||
{
|
||||
title: "Intent Capture",
|
||||
description:
|
||||
"不是等用户写出完美 prompt,而是由 AI 用结构化问题把需求澄清成工程任务。",
|
||||
animation:
|
||||
"/assets/cdn-prod-website-files-com/68a342b7066c56fa60eb3af1/68d1d66f46dd336c7d633316_velocity-quantum-webflow-template-top-to-bottom.json",
|
||||
},
|
||||
{
|
||||
title: "Smart Routing",
|
||||
description:
|
||||
"同一个工作流里的不同子任务自动选择最优模型,在质量、速度和成本之间动态平衡。",
|
||||
animation:
|
||||
"/assets/cdn-prod-website-files-com/68a342b7066c56fa60eb3af1/68d1d6cf4cfbc189da50f80b_generality-quantum-webflow-template-top-to-bottom.json",
|
||||
},
|
||||
{
|
||||
title: "Open Core Trust",
|
||||
description:
|
||||
"客户端开源、数据路径透明、危险操作可审批,既给个人开发者效率,也给团队可审计性。",
|
||||
animation:
|
||||
"/assets/cdn-prod-website-files-com/68a342b7066c56fa60eb3af1/68d1d6a76e480413794c2aa3_intelect-quantum-webflow-template-top-to-bottom.json",
|
||||
},
|
||||
]
|
||||
|
||||
export const ABOUT_VALUES: ValueItem[] = [
|
||||
{
|
||||
title: "透明可审计",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598eeb838c974f3def70a_accuracy-icon-quantum-webflow-template-1.svg",
|
||||
},
|
||||
{
|
||||
title: "中文优先",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598f0e3caa08df665212f_trust-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
title: "多模型务实主义",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598f1f8443cbbcf767239_intellect-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
title: "端到端自动化",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598f00141b9ac31a01989_velocity-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
title: "安全默认开启",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598eefda8dc1927236eb3_clarity-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
title: "企业可落地",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598f04600b3080cab823c_scalability-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
title: "工程质量优先",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598ed8d91f474a2d4ecdc_excellence-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
{
|
||||
title: "知识可复用",
|
||||
icon: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3af1/68a598ed19f8b3ed79933a38_communication-icon-quantum-webflow-template.svg",
|
||||
},
|
||||
]
|
||||
|
||||
export const TARGET_PERSONAS: PersonaItem[] = [
|
||||
{
|
||||
title: "独立开发者",
|
||||
description: "需要一个真正能接手样板代码、重构和测试的 AI 编程搭档。",
|
||||
},
|
||||
{
|
||||
title: "团队 Lead",
|
||||
description: "想统一模型策略、控制成本,并让 Agent 输出过程可审查。",
|
||||
},
|
||||
{
|
||||
title: "非技术创业者",
|
||||
description: "不想学习 prompt engineering,更想让 AI 先把需求问清楚。",
|
||||
},
|
||||
{
|
||||
title: "企业 CTO",
|
||||
description: "关心私有化部署、SSO、审计日志和与现有知识库的连接能力。",
|
||||
},
|
||||
]
|
||||
|
||||
export const CONTACT_CHANNELS: ContactChannel[] = [
|
||||
{
|
||||
title: "产品咨询",
|
||||
value: "申请产品演示与试用方向沟通",
|
||||
description: "适合想了解 DAL Code 产品定位、路线图和早期试用机会的团队。",
|
||||
href: "#contact-form",
|
||||
},
|
||||
{
|
||||
title: "企业方案",
|
||||
value: "私有化部署 / 团队采购 / 安全合规",
|
||||
description: "适合关注多模型路由、私有部署和审批流的技术负责人。",
|
||||
href: "#contact-form",
|
||||
},
|
||||
{
|
||||
title: "生态合作",
|
||||
value: "Skills / 插件 / 社区共建",
|
||||
description: "适合希望围绕 DAL Code 一起构建工作流、模板和生态能力的伙伴。",
|
||||
href: "https://deepailab.com",
|
||||
},
|
||||
]
|
||||
|
||||
export const CONTACT_FAQS: FaqItem[] = [
|
||||
{
|
||||
question: "DAL Code 和 Cursor / Codex 的核心区别是什么?",
|
||||
answer:
|
||||
"DAL Code 的重点不是让用户写更好的 prompt,而是让 AI 先把需求问清楚,再把任务拆解、执行和交付。",
|
||||
},
|
||||
{
|
||||
question: "多模型路由会影响团队的稳定性吗?",
|
||||
answer:
|
||||
"不会。模型选择由统一策略控制,任务类型、成本预算和延迟阈值都会被显式纳入路由决策。",
|
||||
},
|
||||
{
|
||||
question: "你们支持企业私有化和审计吗?",
|
||||
answer:
|
||||
"这是产品路线里的重点方向。官网当前版本展示的是目标能力,实际合作可以先从约束清晰的场景开始落地。",
|
||||
},
|
||||
{
|
||||
question: "DAL Code 的 Skills 是什么?",
|
||||
answer:
|
||||
"Skills 不是 prompt 模板,而是把经验封装成可复用的引导式工作流,让 AI 能主动采访、验证和执行。",
|
||||
},
|
||||
]
|
||||
|
||||
export const SOCIAL_LINKS = [
|
||||
{ label: "DeepAILab", href: "https://deepailab.com" },
|
||||
{ label: "GitHub", href: "https://github.com" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
]
|
||||
+37
-20
@@ -4,35 +4,52 @@ export interface TeamMember {
|
||||
role: string
|
||||
bio: string
|
||||
image: string
|
||||
story: string[]
|
||||
}
|
||||
|
||||
export const TEAM_MEMBERS: TeamMember[] = [
|
||||
{
|
||||
slug: "john-carter-wy738",
|
||||
name: "John Carter",
|
||||
role: "CEO & Founder",
|
||||
bio: "Lorem ipsum dolor sit amet consectetur diam leo interdum nibh ut at libero elit pharetra in eget.",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e5ff7b59be67bb3ac207_john-carter-avatar-quantum-webflow-template.jpg",
|
||||
slug: "intent-capture",
|
||||
name: "Intent Capture",
|
||||
role: "把模糊目标变成可执行需求",
|
||||
bio: "DAL Code 的第一能力不是写代码,而是先用结构化问题把需求问清楚。",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e7e2a643b738b2cb06fc_ai-powered-predictive-models-and-their-impact-thumbnail-quantum-webflow-template.png",
|
||||
story: [
|
||||
"Intent Capture 负责接住用户最初那句不完整的话,把产品目标、约束和成功标准变成工程语言。",
|
||||
"它决定了 DAL Code 是否真的能服务非技术用户,也决定了后续 Agent 执行会不会偏离意图。",
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "sophie-moore",
|
||||
name: "Sophie Moore",
|
||||
role: "Director of Operations",
|
||||
bio: "Lorem ipsum dolor sit amet consectetur diam leo interdum nibh ut at libero elit pharetra in eget.",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e5d29b2f76acd088f052_sophie-moore-avatar-quantum-webflow-template.jpg",
|
||||
slug: "agent-runtime",
|
||||
name: "Agent Runtime",
|
||||
role: "让计划、工具和审批跑得稳定",
|
||||
bio: "从 query loop 到 tool orchestration,这一层决定了 DAL Code 的自主执行是否值得信任。",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e7c24025d4081cbfa426_how-ai-is-shaping-the-future-thumbnail-quantum-webflow-template.png",
|
||||
story: [
|
||||
"Agent Runtime 处理任务拆解、上下文压缩、工具执行和权限流,让 Mission Mode 不只是一个长对话。",
|
||||
"它的重点不是更激进,而是更可控:每一步都要能解释、验证和回滚。",
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "lilly-woods",
|
||||
name: "Lilly Woods",
|
||||
role: "Lead UX Designer",
|
||||
bio: "Lorem ipsum dolor sit amet consectetur diam leo interdum nibh ut at libero elit pharetra in eget.",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e5b658f5ca9f60fd5e16_lilly-woods-avatar-quantum-webflow-template.jpg",
|
||||
slug: "smart-routing",
|
||||
name: "Smart Routing",
|
||||
role: "在质量、速度和成本之间动态选模",
|
||||
bio: "DAL Code 的多模型优势只有在产品层真正落地,才会变成用户感知得到的体验差异。",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e7967b59be67bb3b9a64_the-role-of-transparency-in-ai-thumbnail-quantum-webflow-template.png",
|
||||
story: [
|
||||
"Smart Routing 不是把模型列表摆给用户看,而是让产品在不同任务阶段自动选更合适的模型。",
|
||||
"对团队来说,这意味着成本、延迟和质量可以被统一治理,而不是靠个人经验调参。",
|
||||
],
|
||||
},
|
||||
{
|
||||
slug: "matt-cannon",
|
||||
name: "Matt Cannon",
|
||||
role: "VP of Engineering",
|
||||
bio: "Lorem ipsum dolor sit amet consectetur diam leo interdum nibh ut at libero elit pharetra in eget.",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e5268e58fa10010ce586_matt-cannon-avatar-quantum-webflow-template.jpg",
|
||||
slug: "open-core-dx",
|
||||
name: "Open Core DX",
|
||||
role: "兼顾开源信任与企业治理",
|
||||
bio: "客户端开源、智能层持续演进、企业边界清晰,这一块决定了 DAL Code 是否能走向长期平台。",
|
||||
image: "/assets/wubflow-shield-nocodexport-dev/68a342b7066c56fa60eb3b39/68a6e766a2a14a56c3716545_revolutionizing-business-insights-with-ai-thumbnail-quantum-webflow-template.png",
|
||||
story: [
|
||||
"Open Core DX 关注的不是单点功能,而是产品信任结构:哪些能力公开,哪些能力需要审计,哪些能力适合企业部署。",
|
||||
"它也是 DAL Code 从个人工具走向团队平台时最关键的一层产品设计。",
|
||||
],
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user