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

12 lines
237 B
TypeScript

import { html } from "@mastrojs/mastro";
export const Header = () => html`
<header class="py-8">
<a
class="text-5xl font-bold font-fancy rounded bg-stone-950 px-4 py-1"
href="/"
>jens.pub</a
>
</header>
`;