官网 初版

This commit is contained in:
rucky
2026-03-18 17:13:27 +08:00
parent 879c4bdfc8
commit 241a76caeb
95 changed files with 8889 additions and 113 deletions

View File

@@ -0,0 +1,16 @@
export function Footer() {
return (
<footer className="border-t border-amber-900/20 bg-[#0a0912]">
<div className="mx-auto max-w-6xl px-4 py-8">
<div className="flex flex-col items-center justify-between gap-4 sm:flex-row">
<p className="text-sm text-gray-500">
&copy; {new Date().getFullYear()} Nanami
</p>
<p className="text-sm text-gray-500">
Turtle WoW
</p>
</div>
</div>
</footer>
);
}