feat: initial commit

This commit is contained in:
2026-05-17 11:39:46 +02:00
commit 3b34a7b2a4
16 changed files with 2319 additions and 0 deletions

17
src/pages/index.astro Normal file
View File

@@ -0,0 +1,17 @@
---
import Layout from "@/layouts/main.astro"
import { Button } from "@/components/ui/button"
---
<Layout>
<div class="flex min-h-svh p-6">
<div class="flex max-w-md min-w-0 flex-col gap-4 text-sm leading-loose">
<div>
<h1 class="font-medium">Project ready!</h1>
<p>You may now add components and start building.</p>
<p>We've already added the button component for you.</p>
<Button client:load className="mt-2">Button</Button>
</div>
</div>
</div>
</Layout>