Files
tksm-ndy-mc-proj-web/components/site-footer.tsx
tuna2134 8624d2c805
Some checks failed
Push to github container register / push-docker (push) Has been cancelled
feat: add SiteFooter component and integrate it into RootLayout
2026-04-06 03:41:20 +00:00

17 lines
550 B
TypeScript

export function SiteFooter() {
return (
<footer className="border-t bg-card/60">
<div className="mx-auto flex w-full max-w-6xl items-center justify-center px-4 py-4 text-center text-xs text-muted-foreground sm:px-8 sm:text-sm">
:
<a
href="https://neody.land/ja"
target="_blank"
rel="noopener noreferrer"
className="ml-1 font-medium text-foreground underline underline-offset-4 hover:text-primary"
>
Neodyland
</a>
</div>
</footer>
);
}