Files
AboutMe/components/site-footer.tsx
T
2026-08-19 18:05:20 +08:00

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>
);
}