import { lazy } from "react"; import { BrowserRouter, Route, Routes } from "react-router-dom"; import { ScrollToTop } from "./components/ScrollToTop"; // Lazy load page components const Index = lazy(() => import("./pages/Index")); const NotFound = lazy(() => import("./pages/NotFound")); export function AppRouter() { return ( } /> {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} } /> ); } export default AppRouter;