/* * ============================================================================= * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform * ----------------------------------------------------------------------------- * File: client/src/App.tsx * * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * Website: https://www.spboucher.ai * Demo: https://www.vquant.ai * License: MIT (see LICENSE) * * Copyright © 2026 Simon-Pierre Boucher. All rights reserved. * ============================================================================= */ 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 { ThemeProvider } from "@/components/theme-provider"; import { ErrorBoundary } from "@/components/error-boundary"; import Home from "@/pages/home"; import Showcase from "@/pages/showcase"; import Admin from "@/pages/admin"; import SharedReport from "@/pages/shared-report"; import Documentation from "@/pages/documentation"; import Privacy from "@/pages/privacy"; import Terms from "@/pages/terms"; import SlidesGenerator from "@/pages/slides-generator"; import Auth from "@/pages/auth"; import NotFound from "@/pages/not-found"; function Router() { return ( ); } function App() { return ( ); } export default App;