feat: initial commit

This commit is contained in:
2026-04-17 12:44:08 -04:00
commit 82fee7a507
22 changed files with 9185 additions and 0 deletions

11
vite.config.ts Normal file
View File

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