Files
local/frontend/components/footer.tsx
2025-12-01 02:29:08 +01:00

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">&copy; {new Date().getFullYear()} atticl</p>
<p className="font-mono text-xs text-muted-foreground">Built with care. Shipped with confidence.</p>
</div>
</div>
</footer>
)
}