[Init]: Initial commit, Landing Page partially done. 01.04. 5 A.M.

This commit is contained in:
georg-njaa
2026-04-01 05:52:27 +02:00
commit 5d1e5062e7
40 changed files with 10136 additions and 0 deletions

14
astro.config.mjs Normal file
View File

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