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
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);