website/_components/footer.tsx
Foster Hangdaan 4571eb3e85
Replace font icons with SVG icons
The new SVG icons are from the Tabler Icons set.
2023-07-31 00:14:54 -04:00

9 lines
429 B
TypeScript

export default function({ comp }) {
return (
<footer className="page-footer">
<p>Copyright &copy; 2023 Foster Hangdaan</p>
<p>Made with <a href="https://deno.land/" target="_blank">Deno</a>, <a href="https://lume.land/" target="_blank">Lume</a>, <a href="https://www.typescriptlang.org/" target="_blank">TypeScript</a> and lots of <span className="heart">{ comp.icons.Heart() }</span>.</p>
</footer>
);
}