init: initial commit

This commit is contained in:
Blizzard
2026-07-17 09:47:53 +08:00
commit d46267dde1
34 changed files with 2908 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "web",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "web",
"port": 5173
}
]
}
+24
View File
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
+8
View File
@@ -0,0 +1,8 @@
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"rules": {
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
}
}
+32
View File
@@ -0,0 +1,32 @@
# React + TypeScript + Vite
This template provides a minimal setup to get React working in Vite with HMR and some Oxlint rules.
Currently, two official plugins are available:
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Oxc](https://oxc.rs)
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/)
## React Compiler
The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
## Expanding the Oxlint configuration
If you are developing a production application, we recommend enabling type-aware lint rules by installing `oxlint-tsgolint` and editing `.oxlintrc.json`:
```json
{
"$schema": "./node_modules/oxlint/configuration_schema.json",
"plugins": ["react", "typescript", "oxc"],
"options": {
"typeAware": true
},
"rules": {
"react/rules-of-hooks": "error",
"react/only-export-components": ["warn", { "allowConstantExport": true }]
}
}
```
See the [Oxlint rules documentation](https://oxc.rs/docs/guide/usage/linter/rules) for the full list of rules and categories.
+21
View File
@@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "src/index.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
+28
View File
@@ -0,0 +1,28 @@
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="sundynix agentix — 事件驱动的 AI Agent 工作台。画布编排智能体,多 Agent 团队研究、检索、生成真正的 Word 报告。"
/>
<title>sundynix agentix — 事件驱动的 AI Agent 工作台</title>
<script>
// 避免主题闪烁:React 挂载前先落 dark class
;(function () {
var t = localStorage.getItem('sundynix-theme')
var dark =
t === 'dark' ||
((t === null || t === 'system') &&
window.matchMedia('(prefers-color-scheme: dark)').matches)
if (dark) document.documentElement.classList.add('dark')
})()
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
+1781
View File
File diff suppressed because it is too large Load Diff
+32
View File
@@ -0,0 +1,32 @@
{
"name": "web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "oxlint",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.3.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@types/node": "^24.13.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"oxlint": "^1.71.0",
"typescript": "~6.0.2",
"vite": "^8.1.1"
}
}
+5
View File
@@ -0,0 +1,5 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<rect width="32" height="32" rx="7" fill="#10201b"/>
<path d="M9 20.5 15 10l3.2 5.6L21 11l2.5 4.3" fill="none" stroke="#3ecdad" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
<circle cx="23.5" cy="15.3" r="1.6" fill="#3ecdad"/>
</svg>

After

Width:  |  Height:  |  Size: 323 B

+19
View File
@@ -0,0 +1,19 @@
import { Route, Routes } from 'react-router-dom'
import { SiteLayout } from '@/components/layout/site-layout'
import HomePage from '@/pages/home'
import BlogPage from '@/pages/blog'
import DownloadPage from '@/pages/download'
import NotFoundPage from '@/pages/not-found'
export default function App() {
return (
<Routes>
<Route element={<SiteLayout />}>
<Route index element={<HomePage />} />
<Route path="blog" element={<BlogPage />} />
<Route path="download" element={<DownloadPage />} />
<Route path="*" element={<NotFoundPage />} />
</Route>
</Routes>
)
}
+31
View File
@@ -0,0 +1,31 @@
import { DOWNLOADS } from '@/content/site'
import { cn } from '@/lib/utils'
export function DownloadGrid() {
return (
<div className="mx-auto grid max-w-[780px] grid-cols-1 gap-4 sm:grid-cols-3">
{DOWNLOADS.map((d) => (
<div
key={d.os}
className="rounded-xl border border-hairline bg-surface p-6 text-center transition-colors hover:border-accent"
>
<div className="mb-1 text-[15.5px] font-semibold">{d.os}</div>
<div className="mb-4 font-mono text-[11.5px] text-ink-3">
{d.meta}
</div>
<a
href={d.href}
className={cn(
'inline-block rounded-[7px] px-5 py-1.5 text-[13.5px] font-medium transition-opacity hover:opacity-90',
d.highlight
? 'bg-accent text-ground'
: 'border border-hairline-strong text-accent-ink',
)}
>
{d.action}
</a>
</div>
))}
</div>
)
}
+27
View File
@@ -0,0 +1,27 @@
const FOOTER_LINKS = [
{ label: 'GITHUB', href: 'https://github.com/sundynix' },
{ label: 'DOCS', href: '/docs' },
{ label: 'RELEASES', href: '/download' },
{ label: 'RSS', href: '/rss.xml' },
]
export function SiteFooter() {
return (
<footer className="border-t border-hairline">
<div className="mx-auto flex max-w-6xl flex-wrap items-center justify-between gap-2 px-6 py-6 font-mono text-[12.5px] text-ink-3 lg:px-10">
<span>© 2026 SUNDYNIX AGENTIX</span>
<span className="flex gap-4">
{FOOTER_LINKS.map((l) => (
<a
key={l.label}
href={l.href}
className="transition-colors hover:text-accent-ink"
>
{l.label}
</a>
))}
</span>
</div>
</footer>
)
}
+108
View File
@@ -0,0 +1,108 @@
import { useState } from 'react'
import { Link, NavLink } from 'react-router-dom'
import { Menu, Moon, Sun, X } from 'lucide-react'
import { useTheme } from '@/components/theme-provider'
import { cn } from '@/lib/utils'
const NAV_ITEMS = [
{ label: '产品', to: '/', end: true },
{ label: '功能', to: '/#features' },
{ label: '架构', to: '/#architecture' },
{ label: '博客', to: '/blog' },
]
function ThemeToggle() {
const { resolved, setTheme } = useTheme()
return (
<button
type="button"
aria-label={resolved === 'dark' ? '切换到浅色主题' : '切换到深色主题'}
onClick={() => setTheme(resolved === 'dark' ? 'light' : 'dark')}
className="flex size-8 items-center justify-center rounded-full border border-hairline-strong text-ink-2 transition-colors hover:border-accent hover:text-accent-ink"
>
{resolved === 'dark' ? (
<Sun className="size-4" />
) : (
<Moon className="size-4" />
)}
</button>
)
}
export function SiteHeader() {
const [open, setOpen] = useState(false)
const links = NAV_ITEMS.map((item) =>
item.to.includes('#') ? (
<a
key={item.to}
href={item.to}
onClick={() => setOpen(false)}
className="text-sm text-ink-2 transition-colors hover:text-ink"
>
{item.label}
</a>
) : (
<NavLink
key={item.to}
to={item.to}
end={item.end}
onClick={() => setOpen(false)}
className={({ isActive }) =>
cn(
'text-sm transition-colors hover:text-ink',
isActive ? 'text-ink' : 'text-ink-2',
)
}
>
{item.label}
</NavLink>
),
)
return (
<header className="sticky top-0 z-40 border-b border-hairline bg-ground/85 backdrop-blur">
<div className="mx-auto flex h-16 max-w-6xl items-center justify-between px-6 lg:px-10">
<Link to="/" className="font-mono text-[15px] font-semibold">
sundynix <em className="not-italic text-accent">agentix</em>
</Link>
<nav className="hidden items-center gap-7 md:flex">
{links}
<ThemeToggle />
<Link
to="/download"
className="rounded-[7px] bg-accent px-4 py-1.5 text-[13px] font-medium text-ground transition-opacity hover:opacity-90"
>
</Link>
</nav>
<div className="flex items-center gap-3 md:hidden">
<ThemeToggle />
<button
type="button"
aria-label={open ? '关闭菜单' : '打开菜单'}
onClick={() => setOpen((v) => !v)}
className="flex size-8 items-center justify-center text-ink-2"
>
{open ? <X className="size-5" /> : <Menu className="size-5" />}
</button>
</div>
</div>
{open && (
<nav className="flex flex-col gap-4 border-t border-hairline px-6 py-5 md:hidden">
{links}
<Link
to="/download"
onClick={() => setOpen(false)}
className="w-fit rounded-[7px] bg-accent px-4 py-1.5 text-[13px] font-medium text-ground"
>
</Link>
</nav>
)}
</header>
)
}
+22
View File
@@ -0,0 +1,22 @@
import { useEffect } from 'react'
import { Outlet, useLocation } from 'react-router-dom'
import { SiteHeader } from '@/components/layout/site-header'
import { SiteFooter } from '@/components/layout/site-footer'
export function SiteLayout() {
const { pathname } = useLocation()
useEffect(() => {
window.scrollTo(0, 0)
}, [pathname])
return (
<div className="flex min-h-screen flex-col">
<SiteHeader />
<main className="flex-1">
<Outlet />
</main>
<SiteFooter />
</div>
)
}
+7
View File
@@ -0,0 +1,7 @@
export function SectionLabel({ children }: { children: string }) {
return (
<span className="mb-2.5 block font-mono text-[11px] tracking-[0.18em] text-accent">
{children}
</span>
)
}
+37
View File
@@ -0,0 +1,37 @@
import { TERMINAL_DEMO } from '@/content/site'
/** Hero 事件流终端窗 — 双主题共用深色 */
export function TerminalDemo() {
return (
<div className="mx-auto mt-13 max-w-[720px] overflow-hidden rounded-t-xl border border-b-0 border-hairline-strong bg-term text-left">
<div className="flex items-center gap-2 border-b border-white/[0.07] px-4 py-2.5">
{[0, 1, 2].map((i) => (
<span key={i} className="size-2.5 rounded-full bg-white/[0.18]" />
))}
<span className="ml-2.5 font-mono text-[11.5px] tracking-[0.1em] text-white/40">
{TERMINAL_DEMO.title}
</span>
</div>
<div className="overflow-x-auto px-5 pb-6 pt-5 font-mono text-[13.5px] leading-[2.05] text-term-ink">
<div>
<span className="font-semibold text-[#3ecdad]"> </span>
{TERMINAL_DEMO.prompt}
</div>
<div className="text-white/35">
</div>
{TERMINAL_DEMO.events.map((ev, i) => (
<div key={ev.tag} className="whitespace-nowrap">
<span className={ev.ok ? 'text-[#a6d96a]' : 'text-[#7fb8e8]'}>
[{ev.tag}]
</span>{' '}
{ev.text}
{i === TERMINAL_DEMO.events.length - 1 && (
<span className="caret-blink ml-1 inline-block h-[15px] w-2 translate-y-0.5 bg-[#3ecdad]" />
)}
</div>
))}
</div>
</div>
)
}
+63
View File
@@ -0,0 +1,63 @@
import {
createContext,
useContext,
useEffect,
useState,
type ReactNode,
} from 'react'
type Theme = 'light' | 'dark' | 'system'
interface ThemeContextValue {
theme: Theme
resolved: 'light' | 'dark'
setTheme: (t: Theme) => void
}
const ThemeContext = createContext<ThemeContextValue | null>(null)
const STORAGE_KEY = 'sundynix-theme'
function systemTheme(): 'light' | 'dark' {
return window.matchMedia('(prefers-color-scheme: dark)').matches
? 'dark'
: 'light'
}
export function ThemeProvider({ children }: { children: ReactNode }) {
const [theme, setThemeState] = useState<Theme>(
() => (localStorage.getItem(STORAGE_KEY) as Theme) ?? 'system',
)
const [resolved, setResolved] = useState<'light' | 'dark'>(() =>
theme === 'system' ? systemTheme() : theme,
)
useEffect(() => {
const apply = () => {
const r = theme === 'system' ? systemTheme() : theme
setResolved(r)
document.documentElement.classList.toggle('dark', r === 'dark')
}
apply()
const mq = window.matchMedia('(prefers-color-scheme: dark)')
mq.addEventListener('change', apply)
return () => mq.removeEventListener('change', apply)
}, [theme])
const setTheme = (t: Theme) => {
localStorage.setItem(STORAGE_KEY, t)
setThemeState(t)
}
return (
<ThemeContext.Provider value={{ theme, resolved, setTheme }}>
{children}
</ThemeContext.Provider>
)
}
export function useTheme() {
const ctx = useContext(ThemeContext)
if (!ctx) throw new Error('useTheme must be used within ThemeProvider')
return ctx
}
+137
View File
@@ -0,0 +1,137 @@
/** 站点文案与数据,改这里即可,不用动组件 */
export const SITE = {
version: 'v0.1.2',
tagline: '事件驱动的 AI Agent 工作台',
github: 'https://github.com/sundynix/agentix',
}
export const TERMINAL_DEMO = {
title: 'SUNDYNIX.STREAMS.RT-7F2A',
prompt: '帮我调研「2026 国产大模型推理成本」,出一份带图表的报告',
events: [
{
tag: 'coordinator',
text: '已拆解为 3 个子任务,派发 researcher × 2 · writer × 1',
},
{
tag: 'knowledge',
text: '三路混合检索 · vector + fulltext + graph · RRF 融合',
},
{ tag: 'harness', text: '输出守卫通过 · 预算 ¥2.00 剩余 ¥1.37' },
{
tag: 'report',
text: '大纲 5 章已确认,并行撰写中 → 推理成本分析.docx',
ok: true,
},
],
}
export const FEATURES = [
{
label: 'STUDIO',
title: '可视化编排画布',
desc: 'React Flow 画布拖出工作流,导出 JSON DSL 直接执行;分支路由、map 并行扇出、⌘K 命令面板。',
},
{
label: 'MULTI-AGENT',
title: '多智能体协作',
desc: 'OrchestratorWorker 模式:主脑撰写任务简报,并行派发专家 Agent,团队视图实时看它们「上班」。',
},
{
label: 'KNOWLEDGE',
title: '三路混合检索知识库',
desc: '向量 + 全文 + 知识图谱三路召回,RRF 融合重排;双链笔记、反向链接与关系图谱,检索过程可调试。',
},
{
label: 'REPORT',
title: '真 · Word 报告生成',
desc: '选题 → 大纲规划 → 分章并行研究撰写,产出原生 .docx(零依赖 OOXML 渲染),另有 PDF / Markdown。',
},
{
label: 'MEMORY',
title: '长期记忆',
desc: '异步批量固化(ADD/UPDATE/DELETE),近因 × 重要性衰减打分,记忆面板随时可查可改。',
},
{
label: 'HARNESS',
title: '可靠性套件',
desc: '提示注入拦截、流式密钥脱敏、熔断器、LLM 评审自动纠偏、成本预算上限——生产级守卫全内置。',
},
{
label: 'SANDBOX',
title: '代码解释器沙箱',
desc: 'AST 静态审查 + Docker 隔离:无网络、非 root、只读根文件系统,让 Agent 放心跑代码。',
},
{
label: 'STREAMING',
title: '一切皆流式',
desc: 'NATS 零拷贝骨干网直推 SSE/WS,节点级执行轨迹实时可见,Prometheus + OTel 全链路观测。',
},
]
export const ARCH_LAYERS = [
{
id: 'L1 · CLIENT',
name: '桌面工作台',
detail: '· Web / 管理控制台',
tech: 'wails3 · react19',
},
{
id: 'L2 · GATEWAY',
name: 'API 网关',
detail: '· 鉴权 / DSL 解析 / 计费 / 守卫',
tech: 'gin · postgres · redis',
},
{
id: 'L4 · DISPATCHER',
name: '图执行引擎',
detail: '· Agent Loop / LLM Pool',
tech: 'eino · openai-compat',
},
{
id: 'L5 · TOOLS',
name: 'MCP 工具层',
detail: '· 检索 / 解析 / 沙箱',
tech: 'milvus · bleve · neo4j · py3.11',
},
]
export const QUICKSTART_STEPS = [
{
title: '下载或克隆。',
desc: '桌面版开箱即用;自部署走 docker compose。',
},
{
title: '接入模型。',
desc: '任何 OpenAI 兼容端点:DeepSeek、百炼……填 Key 即可。',
},
{
title: '喂知识,派任务。',
desc: '拖入文档建库,画布编排或直接对话,看团队开工。',
},
]
export const DOWNLOADS = [
{
os: 'macOS',
meta: 'universal · .app · v0.1.2',
action: '下载 .dmg',
href: '#',
highlight: true,
},
{
os: 'Windows',
meta: 'x64 · .exe · v0.1.2',
action: '下载 .exe',
href: '#',
highlight: false,
},
{
os: '自托管',
meta: 'docker compose · 全平台',
action: '部署文档',
href: '#',
highlight: false,
},
]
+90
View File
@@ -0,0 +1,90 @@
@import "tailwindcss";
@custom-variant dark (&:is(.dark *));
/* ── 设计 token(设计稿 v0.2)────────────────────────────
青瓷绿单强调色;中性色整体向青绿偏移;
终端窗双主题共用深色。 */
:root {
--ground: #f6f8f7;
--surface: #ffffff;
--ink: #16211d;
--ink-2: #55665f;
--ink-3: #8a9891;
--hairline: #e1e8e4;
--hairline-strong: #c9d4cf;
--accent: #0e7c6b;
--accent-ink: #0a5a4e;
--accent-soft: #e3f1ec;
--code-bg: #edf2f0;
--term-bg: #10201b;
--term-ink: #c7e8de;
}
.dark {
--ground: #0d1311;
--surface: #131b18;
--ink: #e7efeb;
--ink-2: #93a69f;
--ink-3: #64756e;
--hairline: #22302b;
--hairline-strong: #35453f;
--accent: #3ecdad;
--accent-ink: #6fdfc6;
--accent-soft: #12352d;
--code-bg: #182420;
--term-bg: #0a1512;
--term-ink: #a9d8cb;
}
@theme inline {
--color-ground: var(--ground);
--color-surface: var(--surface);
--color-ink: var(--ink);
--color-ink-2: var(--ink-2);
--color-ink-3: var(--ink-3);
--color-hairline: var(--hairline);
--color-hairline-strong: var(--hairline-strong);
--color-accent: var(--accent);
--color-accent-ink: var(--accent-ink);
--color-accent-soft: var(--accent-soft);
--color-code: var(--code-bg);
--color-term: var(--term-bg);
--color-term-ink: var(--term-ink);
--font-sans: -apple-system, "PingFang SC", "Hiragino Sans GB",
"Microsoft YaHei", "Noto Sans SC", sans-serif;
--font-mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas,
monospace;
}
html {
background: var(--ground);
scroll-behavior: smooth;
}
body {
@apply bg-ground text-ink font-sans antialiased;
font-size: 16px;
line-height: 1.75;
}
::selection {
background: var(--accent-soft);
color: var(--accent-ink);
}
/* 终端光标 */
@keyframes caret-blink {
50% {
opacity: 0;
}
}
.caret-blink {
animation: caret-blink 1.1s steps(1) infinite;
}
@media (prefers-reduced-motion: reduce) {
.caret-blink {
animation: none;
}
}
+6
View File
@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
+16
View File
@@ -0,0 +1,16 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { BrowserRouter } from 'react-router-dom'
import { ThemeProvider } from '@/components/theme-provider'
import App from '@/App'
import '@/index.css'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<ThemeProvider>
<BrowserRouter>
<App />
</BrowserRouter>
</ThemeProvider>
</StrictMode>,
)
+53
View File
@@ -0,0 +1,53 @@
import { SectionLabel } from '@/components/section-label'
/** 占位数据 — 接入后端后替换为 /api/posts */
const POSTS = [
{
date: '2026-07-02',
title: 'sundynix agentix v0.1.2 发布:应用内更新与团队视图',
category: 'RELEASE',
},
{
date: '2026-06-18',
title: '三路混合检索是怎么工作的:vector + fulltext + graph',
category: 'ENGINEERING',
},
{
date: '2026-05-30',
title: '为什么我们选择事件驱动:NATS 零拷贝骨干网设计记',
category: 'ARCHITECTURE',
},
]
export default function BlogPage() {
return (
<section className="px-6 py-16 lg:px-10">
<div className="mx-auto max-w-4xl">
<div className="mb-9">
<SectionLabel>BLOG</SectionLabel>
<h1 className="text-[28px] font-[650] tracking-[-0.02em]">
</h1>
</div>
<div>
{POSTS.map((post) => (
<article
key={post.title}
className="grid grid-cols-1 items-baseline gap-1 border-b border-hairline py-4.5 sm:grid-cols-[110px_1fr_auto] sm:gap-6"
>
<time className="font-mono text-[12.5px] tabular-nums text-ink-3">
{post.date}
</time>
<h2 className="text-[15.5px] font-medium transition-colors hover:text-accent-ink">
<a href="#">{post.title}</a>
</h2>
<span className="font-mono text-[11.5px] tracking-[0.08em] text-ink-3">
{post.category}
</span>
</article>
))}
</div>
</div>
</section>
)
}
+21
View File
@@ -0,0 +1,21 @@
import { SectionLabel } from '@/components/section-label'
import { DownloadGrid } from '@/components/download-grid'
export default function DownloadPage() {
return (
<section className="px-6 py-16 lg:px-10">
<div className="mx-auto max-w-6xl">
<div className="mx-auto mb-9 max-w-[560px] text-center">
<SectionLabel>DOWNLOAD</SectionLabel>
<h1 className="text-balance text-[28px] font-[650] tracking-[-0.02em]">
sundynix agentix
</h1>
<p className="mt-2.5 text-[15px] text-ink-2">
macOS Windows docker compose
</p>
</div>
<DownloadGrid />
</div>
</section>
)
}
+51
View File
@@ -0,0 +1,51 @@
import { Fragment } from 'react'
import { ARCH_LAYERS } from '@/content/site'
import { SectionLabel } from '@/components/section-label'
export function Architecture() {
return (
<section
id="architecture"
className="border-t border-hairline px-6 py-16 lg:px-10"
>
<div className="mx-auto max-w-6xl">
<div className="mx-auto mb-9 max-w-[560px] text-center">
<SectionLabel>ARCHITECTURE</SectionLabel>
<h2 className="text-balance text-[26px] font-[650] tracking-[-0.02em]">
线
</h2>
<p className="mt-2.5 text-[15px] text-ink-2">
Monolith FirstMorph B
</p>
</div>
<div className="mx-auto max-w-[760px]">
{ARCH_LAYERS.map((layer, i) => (
<Fragment key={layer.id}>
{/* NATS 总线插在 L2 和 L4 之间 */}
{i === 2 && (
<div className="mb-2.5 flex items-center justify-center gap-3.5 rounded-[10px] border border-dashed border-accent bg-accent-soft px-5 py-3 font-mono text-xs tracking-[0.1em] text-accent-ink">
NATS JETSTREAM · sundynix.*
</div>
)}
<div className="mb-2.5 grid grid-cols-1 items-center gap-1 rounded-[10px] border border-hairline bg-surface px-5 py-3.5 sm:grid-cols-[120px_1fr_auto] sm:gap-5">
<span className="font-mono text-[11px] tracking-[0.14em] text-ink-3">
{layer.id}
</span>
<span className="text-sm font-medium">
{layer.name}{' '}
<span className="text-[13px] font-normal text-ink-2">
{layer.detail}
</span>
</span>
<span className="font-mono text-[11.5px] text-accent-ink">
{layer.tech}
</span>
</div>
</Fragment>
))}
</div>
</div>
</section>
)
}
+21
View File
@@ -0,0 +1,21 @@
import { SectionLabel } from '@/components/section-label'
import { DownloadGrid } from '@/components/download-grid'
export function DownloadCta() {
return (
<section className="border-t border-hairline px-6 py-16 lg:px-10">
<div className="mx-auto max-w-6xl">
<div className="mx-auto mb-9 max-w-[560px] text-center">
<SectionLabel>DOWNLOAD</SectionLabel>
<h2 className="text-balance text-[26px] font-[650] tracking-[-0.02em]">
AI
</h2>
<p className="mt-2.5 text-[15px] text-ink-2">
线
</p>
</div>
<DownloadGrid />
</div>
</section>
)
}
+35
View File
@@ -0,0 +1,35 @@
import { FEATURES } from '@/content/site'
import { SectionLabel } from '@/components/section-label'
export function Features() {
return (
<section id="features" className="border-t border-hairline px-6 py-16 lg:px-10">
<div className="mx-auto max-w-6xl">
<div className="mx-auto mb-9 max-w-[560px] text-center">
<SectionLabel>CAPABILITIES</SectionLabel>
<h2 className="text-balance text-[26px] font-[650] tracking-[-0.02em]">
AI
</h2>
<p className="mt-2.5 text-[15px] text-ink-2">
</p>
</div>
<div className="grid grid-cols-1 gap-px overflow-hidden rounded-xl border border-hairline bg-hairline sm:grid-cols-2 lg:grid-cols-4">
{FEATURES.map((f) => (
<div
key={f.label}
className="bg-surface p-6 transition-colors hover:bg-ground"
>
<span className="mb-3 block font-mono text-[10.5px] tracking-[0.16em] text-accent-ink">
{f.label}
</span>
<h3 className="mb-1.5 text-base font-semibold">{f.title}</h3>
<p className="text-[13.5px] leading-[1.7] text-ink-2">{f.desc}</p>
</div>
))}
</div>
</div>
</section>
)
}
+46
View File
@@ -0,0 +1,46 @@
import { Link } from 'react-router-dom'
import { Download } from 'lucide-react'
import { SITE } from '@/content/site'
import { TerminalDemo } from '@/components/terminal-demo'
export function Hero() {
return (
<section className="px-6 pt-21 text-center lg:px-10">
<span className="mb-6.5 inline-flex items-center gap-2 rounded-full border border-hairline-strong px-3.5 py-1 font-mono text-xs tracking-[0.08em] text-accent-ink">
<span className="size-[7px] rounded-full bg-accent" />
{SITE.version} · macOS / Windows
</span>
<h1 className="mx-auto max-w-[17em] text-balance text-4xl font-[650] leading-[1.18] tracking-[-0.028em] md:text-[52px] lg:text-[58px]">
<br />
AI Agent <span className="text-ink-3"></span>
</h1>
<p className="mx-auto mt-5.5 max-w-[37em] text-[17px] text-ink-2">
Agent
Word
</p>
<div className="mt-9 flex flex-wrap justify-center gap-3">
<Link
to="/download"
className="inline-flex items-center gap-2 rounded-lg bg-accent px-6 py-2.5 text-[14.5px] font-medium text-ground transition-opacity hover:opacity-90"
>
<Download className="size-4" />
</Link>
<a
href={SITE.github}
target="_blank"
rel="noreferrer"
className="inline-flex items-center rounded-lg border border-hairline-strong px-6 py-2.5 font-mono text-[14px] transition-colors hover:border-accent"
>
$ make demo
</a>
</div>
<TerminalDemo />
</section>
)
}
+17
View File
@@ -0,0 +1,17 @@
import { Hero } from '@/pages/home/hero'
import { Features } from '@/pages/home/features'
import { Architecture } from '@/pages/home/architecture'
import { Quickstart } from '@/pages/home/quickstart'
import { DownloadCta } from '@/pages/home/download-cta'
export default function HomePage() {
return (
<>
<Hero />
<Features />
<Architecture />
<Quickstart />
<DownloadCta />
</>
)
}
+50
View File
@@ -0,0 +1,50 @@
import { QUICKSTART_STEPS } from '@/content/site'
import { SectionLabel } from '@/components/section-label'
export function Quickstart() {
return (
<section className="border-t border-hairline px-6 py-16 lg:px-10">
<div className="mx-auto max-w-6xl">
<div className="mb-9 max-w-[560px]">
<SectionLabel>QUICKSTART</SectionLabel>
<h2 className="text-[26px] font-[650] tracking-[-0.02em]">
</h2>
</div>
<div className="grid grid-cols-1 items-start gap-6 md:grid-cols-2">
<pre className="overflow-x-auto rounded-[10px] bg-term px-5.5 py-5 font-mono text-[13.5px] leading-8 text-term-ink">
<code>
<span className="text-white/35"># NATS</span>
{'\n'}
<span className="text-[#3ecdad]">$</span> git clone
https://github.com/sundynix/agentix{'\n'}
<span className="text-[#3ecdad]">$</span> make demo{'\n'}
{'\n'}
<span className="text-white/35"># </span>
{'\n'}
<span className="text-[#3ecdad]">$</span> docker compose up -d
</code>
</pre>
<ul>
{QUICKSTART_STEPS.map((step, i) => (
<li
key={step.title}
className="flex gap-4 border-b border-hairline py-3 text-[14.5px] text-ink-2"
>
<span className="pt-[3px] font-mono text-xs tracking-[0.08em] text-accent">
0{i + 1}
</span>
<span>
<b className="font-semibold text-ink">{step.title}</b>
{step.desc}
</span>
</li>
))}
</ul>
</div>
</div>
</section>
)
}
+23
View File
@@ -0,0 +1,23 @@
import { Link } from 'react-router-dom'
export default function NotFoundPage() {
return (
<section className="flex flex-col items-center px-6 py-28 text-center">
<p className="font-mono text-[13px] tracking-[0.18em] text-accent">
404 · NOT FOUND
</p>
<h1 className="mt-4 text-[28px] font-[650] tracking-[-0.02em]">
</h1>
<p className="mt-2 text-[15px] text-ink-2">
</p>
<Link
to="/"
className="mt-8 rounded-lg bg-accent px-6 py-2.5 text-[14.5px] font-medium text-ground transition-opacity hover:opacity-90"
>
</Link>
</section>
)
}
+29
View File
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],
"module": "esnext",
"types": ["vite/client"],
"paths": {
"@/*": ["./src/*"]
},
"allowArbitraryExtensions": true,
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}
+12
View File
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"files": [],
"references": [
{ "path": "./tsconfig.app.json" },
{ "path": "./tsconfig.node.json" }
]
}
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023"],
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"module": "nodenext",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}
+21
View File
@@ -0,0 +1,21 @@
import path from 'node:path'
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 5173,
proxy: {
// 联调 Go 后端时启用:/api → gin
'/api': 'http://localhost:8080',
},
},
})