43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { Switch, Route } from "wouter";
|
|
import { queryClient } from "./lib/queryClient";
|
|
import { QueryClientProvider } from "@tanstack/react-query";
|
|
import { Toaster } from "@/components/ui/toaster";
|
|
import { TooltipProvider } from "@/components/ui/tooltip";
|
|
import NotFound from "@/pages/not-found";
|
|
import Home from "@/pages/home";
|
|
import ArticlePage from "@/pages/article";
|
|
import CategoryPage from "@/pages/category";
|
|
import VideosPage from "@/pages/videos";
|
|
import GalleryPageWrapper from "@/pages/gallery";
|
|
import HoroscopePage from "@/pages/horoscope";
|
|
import RecipesPage from "@/pages/recipes";
|
|
|
|
function Router() {
|
|
return (
|
|
<Switch>
|
|
<Route path="/" component={Home} />
|
|
<Route path="/article/:slug" component={ArticlePage} />
|
|
<Route path="/category/:category" component={CategoryPage} />
|
|
<Route path="/videos" component={VideosPage} />
|
|
<Route path="/gallery" component={GalleryPageWrapper} />
|
|
<Route path="/horoskop" component={HoroscopePage} />
|
|
<Route path="/horoskop/:sign" component={HoroscopePage} />
|
|
<Route path="/rezepte" component={RecipesPage} />
|
|
<Route component={NotFound} />
|
|
</Switch>
|
|
);
|
|
}
|
|
|
|
function App() {
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
<TooltipProvider>
|
|
<Toaster />
|
|
<Router />
|
|
</TooltipProvider>
|
|
</QueryClientProvider>
|
|
);
|
|
}
|
|
|
|
export default App;
|