summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 09a80cce59eeb7a6a3b11731ed07a515787e7448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
import TaskManager from "../components/TaskManager";
import StandardLayout from "../layouts/StandardLayout.astro";
---

<StandardLayout title="Full-Stack Astro + Cloudflare">
	<section class="py-12">
		<div class="text-center mb-12">
			<h1 class="text-5xl font-bold text-gray-900 mb-4">
				Full-Stack Astro
			</h1>
			<p class="text-xl text-gray-600 max-w-3xl mx-auto">
				Powered by Cloudflare Workers and D1 Database
			</p>
		</div>
		
		<TaskManager client:load />
	</section>
</StandardLayout>