summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 22adfcf050962cf1e5199b6baec5d1d9aa658835 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
import Counter from '../components/Counter';
import CenteredLayout from '../layouts/CenteredLayout.astro';
---

<CenteredLayout title="Astro">
	<div class="text-center">
		<h1 class="text-4xl font-bold mb-6">Astro</h1>
		<Counter client:load />
	</div>
</CenteredLayout>