website/src/components/Heading.astro
2024-10-17 14:33:45 +01:00

9 lines
136 B
Text

---
interface Props {
title: string;
}
const { title } = Astro.props;
---
<p class="text-bold pt-6 text-center text-4xl">{title}</p>