my website
1---
2import PrettyDate from "./PrettyDate.astro";
3
4export type DateFormat = (date: Date) => string;
5
6interface Props {
7 title: string | null;
8}
9
10const { title, ...props } = Astro.props;
11---
12
13<div class="mt-12 mb-5 flex flex-col gap-2 items-start">
14 <slot name="prefix" />
15 <h1 {...props}>{title}</h1>
16 <slot name="suffix" />
17</div>