diff --git a/src/App.tsx b/src/App.tsx
index 157e6d1..112fa2d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,5 +1,6 @@
import { Authenticated, AuthLoading, Unauthenticated } from 'convex/react'
import { Loader2 } from 'lucide-react'
+import { lazy, Suspense } from 'react'
import {
BrowserRouter,
Navigate,
@@ -9,14 +10,15 @@ import {
} from 'react-router-dom'
import { Toaster } from '@/components/ui/sonner'
import Navbar from './components/Navbar'
-import Admin from './pages/Admin'
-import BuildNew from './pages/BuildNew'
-import BuildProgress from './pages/BuildProgress'
-import Dashboard from './pages/Dashboard'
-import LandingPage from './pages/LandingPage'
-import ProfileDetail from './pages/ProfileDetail'
-import ProfileEditorPage from './pages/ProfileEditorPage'
-import ProfileFlash from './pages/ProfileFlash'
+
+const Admin = lazy(() => import('./pages/Admin'))
+const BuildNew = lazy(() => import('./pages/BuildNew'))
+const BuildProgress = lazy(() => import('./pages/BuildProgress'))
+const Dashboard = lazy(() => import('./pages/Dashboard'))
+const LandingPage = lazy(() => import('./pages/LandingPage'))
+const ProfileDetail = lazy(() => import('./pages/ProfileDetail'))
+const ProfileEditorPage = lazy(() => import('./pages/ProfileEditorPage'))
+const ProfileFlash = lazy(() => import('./pages/ProfileFlash'))
function ConditionalNavbar() {
const location = useLocation()
@@ -37,36 +39,52 @@ function App() {
-
- } />
- } />
- } />
- } />
- } />
- } />
-
+
+
+
+ }
+ >
+
+ } />
+ } />
+ } />
+ } />
+ } />
+ } />
+
+
-
- } />
- } />
- } />
- } />
- } />
- } />
- }
- />
- } />
- }
- />
- } />
-
+
+
+
+ }
+ >
+
+ } />
+ } />
+ } />
+ } />
+ } />
+ } />
+ }
+ />
+ } />
+ }
+ />
+ } />
+
+