init: initial commit

This commit is contained in:
Blizzard
2026-07-17 09:47:53 +08:00
commit d46267dde1
34 changed files with 2908 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { Route, Routes } from 'react-router-dom'
import { SiteLayout } from '@/components/layout/site-layout'
import HomePage from '@/pages/home'
import BlogPage from '@/pages/blog'
import DownloadPage from '@/pages/download'
import NotFoundPage from '@/pages/not-found'
export default function App() {
return (
<Routes>
<Route element={<SiteLayout />}>
<Route index element={<HomePage />} />
<Route path="blog" element={<BlogPage />} />
<Route path="download" element={<DownloadPage />} />
<Route path="*" element={<NotFoundPage />} />
</Route>
</Routes>
)
}