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