10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
export function Footer() {
|
|
return (
|
|
<footer className="border-t border-border mt-20 py-8 text-center">
|
|
<p className="font-mono text-sm text-ink-soft">
|
|
© {new Date().getFullYear()} blog. All rights reserved.
|
|
</p>
|
|
</footer>
|
|
)
|
|
}
|