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

13
astro.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
// @ts-check
import tailwindcss from "@tailwindcss/vite"
import { defineConfig } from "astro/config"
import react from "@astrojs/react"
// https://astro.build/config
export default defineConfig({
vite: {
plugins: [tailwindcss()],
},
integrations: [react()],
})