8 lines
410 B
TypeScript
8 lines
410 B
TypeScript
export default function({ comp }) {
|
|
return (
|
|
<footer className="page-footer">
|
|
<p>Copyright © 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"></span>.</p>
|
|
</footer>
|
|
);
|
|
}
|