17 lines
521 B
TypeScript
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">
|
|
© {new Date().getFullYear()} Nanami 版权所有
|
|
</p>
|
|
<p className="text-sm text-gray-500">
|
|
Turtle WoW 插件平台
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|