33 lines
865 B
TypeScript
33 lines
865 B
TypeScript
import { Switch, Route, Router as WouterRouter } from "wouter";
|
|
import NotFound from "@/pages/not-found";
|
|
|
|
import { Layout } from "@/components/Layout";
|
|
import Home from "@/pages/home";
|
|
import ProductsPage from "@/pages/ProductsPage";
|
|
import AboutPage from "@/pages/AboutPage";
|
|
import ContactPage from "@/pages/ContactPage";
|
|
|
|
function Router() {
|
|
return (
|
|
<Switch>
|
|
<Route path="/" component={Home} />
|
|
<Route path="/products" component={ProductsPage} />
|
|
<Route path="/about" component={AboutPage} />
|
|
<Route path="/contact" component={ContactPage} />
|
|
<Route component={NotFound} />
|
|
</Switch>
|
|
);
|
|
}
|
|
|
|
function App() {
|
|
return (
|
|
<WouterRouter base={import.meta.env.BASE_URL.replace(/\/$/, "")}>
|
|
<Layout>
|
|
<Router />
|
|
</Layout>
|
|
</WouterRouter>
|
|
);
|
|
}
|
|
|
|
export default App;
|