first commitv1

This commit is contained in:
SarTron-NorthBlue
2026-04-02 17:36:07 +04:00
parent 2269fdfc58
commit be02b7e542
24 changed files with 4099 additions and 0 deletions

8
vite.config.js Normal file
View File

@@ -0,0 +1,8 @@
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()],
})