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
+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>
)
}