Initial commit

This commit is contained in:
2025-12-09 16:07:11 +08:00
commit 547a79ddfd
49 changed files with 7752 additions and 0 deletions

25
src/App.tsx Normal file
View File

@@ -0,0 +1,25 @@
import { Routes, Route, Navigate } from 'react-router-dom'
import { Header } from './components/layout/Header'
import { WizardPage } from './pages/WizardPage'
import { EditorPage } from './pages/EditorPage'
import { DistributionPage } from './pages/DistributionPage'
import { SearchPage } from './pages/SearchPage'
function App() {
return (
<div className="h-screen flex flex-col bg-slate-50 overflow-hidden">
<Header />
<main className="flex-1 flex flex-col overflow-hidden">
<Routes>
<Route path="/" element={<Navigate to="/wizard" replace />} />
<Route path="/wizard" element={<WizardPage />} />
<Route path="/editor" element={<EditorPage />} />
<Route path="/distribution" element={<DistributionPage />} />
<Route path="/search" element={<SearchPage />} />
</Routes>
</main>
</div>
)
}
export default App