feat: add landing page

This commit is contained in:
2026-06-12 06:58:06 +08:00
parent 050f2b74c3
commit 7fe3a0fc93
13 changed files with 3067 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import './styles.css';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);