Files
blog/components/Footer.ts
2026-02-13 13:41:18 +01:00

14 lines
320 B
TypeScript

import { html } from "@mastrojs/mastro";
export const Footer = () => html`
<footer>
<div class="bg-stone-950 rounded p-2 mb-4">
Made with
<a href="https://github.com/mastrojs/mastro" class="font-bold font-mono"
>Mastro</a
>
© ${new Date().getFullYear()}
</div>
</footer>
`;