Files
nanami-web/src/components/public/Footer.tsx
2026-03-18 17:13:27 +08:00

17 lines
521 B
TypeScript

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