10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
export function SiteFooter() {
|
|
return (
|
|
<footer className="mx-auto max-w-6xl px-6 pb-16 pt-8">
|
|
<p className="text-center text-xs tracking-wide text-muted-foreground/50">
|
|
{"2026"}
|
|
</p>
|
|
</footer>
|
|
);
|
|
}
|