Files
public-blog/components/layout/Footer.tsx
2026-07-06 22:06:07 -05:00

10 lines
257 B
TypeScript

export function Footer() {
return (
<footer className="border-t border-border mt-16 py-8 text-center">
<p className="font-mono text-xs text-ink-soft">
© {new Date().getFullYear()} Krishna Ayyalasomayajula
</p>
</footer>
)
}