4423a770e2
- 页脚升级双层结构:品牌区 + 产品/资源链接列 + 底栏(© + 滇ICP备2025056308号-1,链接工信部备案系统) - 滚动进场动效:Reveal 组件(IntersectionObserver),首页各区块错峰淡入,尊重 prefers-reduced-motion - Hero 终端窗事件流逐行浮现动画 - 功能卡片 hover 时 mono 标签点亮强调色 - 全站动态页面标题(博客详情随文章名变化) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
811 B
TypeScript
24 lines
811 B
TypeScript
import { SectionLabel } from '@/components/section-label'
|
||
import { DownloadGrid } from '@/components/download-grid'
|
||
import { usePageTitle } from '@/hooks/use-page-title'
|
||
|
||
export default function DownloadPage() {
|
||
usePageTitle('下载')
|
||
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>
|
||
)
|
||
}
|