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