Files
blog/components/Footer.ts
2026-02-13 00:54:47 +01:00

12 lines
238 B
TypeScript

import { html } from "@mastrojs/mastro";
export const Footer = () => html`
<footer>
<div>
Made with
<a href="https://github.com/mastrojs/mastro">Mastro</a> ©
${new Date().getFullYear()}
</div>
</footer>
`;