13 lines
555 B
TypeScript
13 lines
555 B
TypeScript
export function Footer() {
|
|
return (
|
|
<footer className="py-12 border-t border-border">
|
|
<div className="max-w-4xl mx-auto px-6">
|
|
<div className="flex flex-col sm:flex-row items-center justify-between gap-4">
|
|
<p className="font-mono text-sm text-muted-foreground">© {new Date().getFullYear()} atticl</p>
|
|
|
|
<p className="font-mono text-xs text-muted-foreground">Built with care. Shipped with confidence.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
)
|
|
} |