Files

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; 2026 PolyMPR - <a href="/about" f-client-nav={false}>About</a>
</p>
</footer>
);
}