Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/App.jsx
Browse files- frontend/src/App.jsx +17 -19
frontend/src/App.jsx
CHANGED
|
@@ -6,25 +6,23 @@ import { Layout } from './components/Layout';
|
|
| 6 |
import { ErrorBoundary } from './components/ErrorBoundary';
|
| 7 |
import { Toaster } from 'react-hot-toast';
|
| 8 |
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
const Help = React.lazy(() => import('./pages/Help').then(module => ({ default: module.Help })));
|
| 27 |
-
const LegalPage = React.lazy(() => import('./pages/LegalPage').then(module => ({ default: module.LegalPage })));
|
| 28 |
|
| 29 |
function App() {
|
| 30 |
return (
|
|
|
|
| 6 |
import { ErrorBoundary } from './components/ErrorBoundary';
|
| 7 |
import { Toaster } from 'react-hot-toast';
|
| 8 |
|
| 9 |
+
import { LandingPage } from './pages/LandingPage';
|
| 10 |
+
import { Login } from './pages/Login';
|
| 11 |
+
import { Register } from './pages/Register';
|
| 12 |
+
import { Dashboard } from './pages/Dashboard';
|
| 13 |
+
import { NewScan } from './pages/NewScan';
|
| 14 |
+
import { ScanResults } from './pages/ScanResults';
|
| 15 |
+
import { AlertSettingsPage } from './pages/Settings';
|
| 16 |
+
import { ReportsHistory } from './pages/ReportsHistory';
|
| 17 |
+
import Pricing from './pages/Pricing';
|
| 18 |
+
import { SuperAdminLogin } from './pages/SuperAdminLogin';
|
| 19 |
+
import SuperAdminPanel from './pages/SuperAdminPanel';
|
| 20 |
+
import SupportEngineerPanel from './pages/SupportEngineerPanel';
|
| 21 |
+
import { OrganizationPage } from './pages/OrganizationPage';
|
| 22 |
+
import LogsAndThreats from './pages/LogsAndThreats';
|
| 23 |
+
import Profile from './pages/Profile';
|
| 24 |
+
import { Help } from './pages/Help';
|
| 25 |
+
import { LegalPage } from './pages/LegalPage';
|
|
|
|
|
|
|
| 26 |
|
| 27 |
function App() {
|
| 28 |
return (
|