12 lines
238 B
TypeScript
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>
|
|
`;
|