import { lazy, Suspense } from 'react' import { Routes, Route } from 'react-router-dom' import DeployPage from './pages/DeployPage' // Lazy load the sign-in page (includes Three.js - large bundle) const SignInPage = lazy(() => import('./components/ui/sign-in-flow-1').then(m => ({ default: m.SignInPage }))) // Loading fallback for lazy-loaded routes const PageLoader = () => (
Loading...
) function App() { return ( } /> }> } /> ) } export default App