Initial commit

This commit is contained in:
bipproduction
2025-10-06 19:31:31 +08:00
commit 35caccdd44
18 changed files with 643 additions and 0 deletions

18
src/AppRoutes.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { BrowserRouter, Routes, Route } from "react-router-dom";
import Home from "./pages/Home";
import NotFound from "./pages/NotFound";
export default function AppRoutes() {
return (
<BrowserRouter>
<Routes>
<Route path="/" element={<Home />} />
<Route path="*" element={<NotFound />} />
</Routes>
</BrowserRouter>
);
}