Add website files

This commit is contained in:
2026-01-19 23:20:04 +03:30
parent 69bee6597e
commit 2f0bba567f
24 changed files with 3855 additions and 1 deletions

9
vite.config.ts Normal file
View File

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