feat(frontend): add full reservation workflow, timeline gantt, and booking modal

This commit is contained in:
DanielS
2026-08-19 00:32:33 +02:00
parent 737686692a
commit 769268a77e
12 changed files with 1897 additions and 327 deletions

View File

@@ -1,7 +1,9 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()],
})