9 lines
136 B
Text
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>
|