This commit is contained in:
2026-02-13 13:41:18 +01:00
parent d241feb0e9
commit af9ed8d9df
13 changed files with 2022 additions and 190 deletions

View File

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