Files
PolyMPR/routes/(_components)/Footer.tsx
T
2025-01-15 15:43:52 +01:00

14 lines
292 B
TypeScript

import { EmptyObject } from "$root/defaults/interfaces.ts";
type FooterProps = EmptyObject;
export default function Footer(_props: FooterProps) {
return (
<footer>
<p>
&copy; 2025 PolyMPR - <a href="/about" f-client-nav={false}>About</a>
</p>
</footer>
);
}