feat: Redesign frontend with Astro/React and implementation of web-based setup wizard

This commit is contained in:
Brooklyn
2026-01-08 20:43:27 -05:00
parent a3fb535c8d
commit c40caef7e6
29 changed files with 1902 additions and 1600 deletions

12
web/astro.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
export default defineConfig({
integrations: [
react(),
tailwind({
applyBaseStyles: false, // We will include our own global.css
}),
],
});