feat: initialize frontend application with landing page components and event listings

This commit is contained in:
Kevin Satria D
2026-05-20 11:16:45 +07:00
parent a1719a1871
commit a8dfc3d294
7 changed files with 472 additions and 84 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: [
tailwindcss(),
react()
],
})