This commit is contained in:
eric
2026-03-16 01:09:13 -05:00
parent 91d56fa086
commit ff135563fb
15 changed files with 532 additions and 143 deletions

View File

@@ -1,8 +1,15 @@
import Link from "next/link";
export default function Footer() {
return (
<footer className="border-t border-stone-200 dark:border-stone-800 mt-12 py-8">
<div className="max-w-[900px] mx-auto px-5 sm:px-8 text-center text-sm text-stone-500 dark:text-stone-400">
<p>© {new Date().getFullYear()} Salon. ·广· </p>
<div className="flex flex-wrap justify-center gap-x-4 gap-y-1 mb-3">
<Link href="/history" className="hover:text-amber-600 dark:hover:text-amber-400">
</Link>
</div>
<p>© {new Date().getFullYear()} Salon · </p>
</div>
</footer>
);