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

15
src/layouts/main.astro Normal file
View File

@@ -0,0 +1,15 @@
---
import "@/styles/global.css"
---
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>Astro App</title>
</head>
<body>
<slot />
</body>
</html>