14 lines
320 B
TypeScript
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>
|
|
`;
|