a bit of stuff

This commit is contained in:
2026-02-13 00:54:47 +01:00
parent 663b3e0320
commit bcd0f985c7
7 changed files with 73 additions and 134 deletions

View File

@@ -1,12 +1,11 @@
import { html } from "@mastrojs/mastro";
export const Footer = () =>
html`
<footer>
<div>
Check us out
<a href="https://github.com/mastrojs/mastro">on GitHub</a>.
© ${new Date().getFullYear()}
</div>
</footer>
`;
export const Footer = () => html`
<footer>
<div>
Made with
<a href="https://github.com/mastrojs/mastro">Mastro</a> ©
${new Date().getFullYear()}
</div>
</footer>
`;