16 lines
615 B
TypeScript
16 lines
615 B
TypeScript
export default function Footer() {
|
|
return (
|
|
<footer className="border-t border-border mt-16">
|
|
<div className="max-w-[1200px] mx-auto px-6 py-8 flex flex-col sm:flex-row items-center justify-between gap-4">
|
|
<span className="text-lg font-black text-accent tracking-[3px]">言羽</span>
|
|
<p className="text-xs text-text-muted text-center">
|
|
Japanese pop-culture news · VTubers · Anime · Manga · Games · Music · Japan
|
|
</p>
|
|
<p className="text-xs text-text-disabled">
|
|
© {new Date().getFullYear()} Kotobane
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|