server-landing-pages/src/_components/footer.tsx
Sam Therapy dfc20dd715
Make another thing a component :)
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2022-09-25 19:34:44 +02:00

18 lines
401 B
TypeScript

import { PageData } from "lume/core.ts";
export default (data: { contact: string, name: string, source: string }) => (
<footer>
<small>
<a href={data.source}>
source
</a>
<small>
<br />
<br />
Contact <a href={data.contact}>{data.name}</a>{" "}
if you want to use this nameserver as your own.
</small>
</small>
</footer>
);