feat: add landing page for promo

This commit is contained in:
2026-07-09 14:30:22 +08:00
parent 57366ac08f
commit ad1e10e767
13 changed files with 3480 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 5273,
open: true,
},
});