This commit is contained in:
Виталий Лавшонок
2025-10-23 16:34:13 +03:00
parent 8df53a4ed5
commit e3ce191b44
23 changed files with 236 additions and 170 deletions

View File

@@ -8,12 +8,9 @@ import Home from "./pages/Home";
function App() {
return (
<div className="flex py-[100px] w-full h-full">
<div className="flex w-full h-full">
<Routes>
<Route path="/home/*" element={<Home/>}/>
<Route path="*" element={<Home/>}/>
</Routes>