|
|
|
@ -1,27 +1,27 @@ |
|
|
|
|
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; |
|
|
|
|
import { ThemeProvider } from '@mui/material/styles'; |
|
|
|
|
import CssBaseline from '@mui/material/CssBaseline'; |
|
|
|
|
import { OnboardingProvider } from './context/OnboardingContext'; |
|
|
|
|
import { DataProvider } from './providers/DataProvider'; |
|
|
|
|
import { BrowserNGLdoProvider, useNextGraphAuth } from './lib/nextgraph'; |
|
|
|
|
import type { NextGraphAuth } from './types/nextgraph'; |
|
|
|
|
import DashboardLayout from './components/layout/DashboardLayout'; |
|
|
|
|
import SocialContractPage from './pages/SocialContractPage'; |
|
|
|
|
import GroupJoinPage from './pages/GroupJoinPage'; |
|
|
|
|
import ImportPage from './pages/ImportPage'; |
|
|
|
|
import ContactListPage from './pages/ContactListPage'; |
|
|
|
|
import ContactViewPage from './pages/ContactViewPage'; |
|
|
|
|
import GroupPage from './pages/GroupPage'; |
|
|
|
|
import GroupDetailPage from './pages/GroupDetailPage'; |
|
|
|
|
import GroupInfoPage from './pages/GroupInfoPage'; |
|
|
|
|
import InvitationPage from './pages/InvitationPage'; |
|
|
|
|
import OnboardingPage from './pages/OnboardingPage'; |
|
|
|
|
import FeedPage from './pages/FeedPage'; |
|
|
|
|
import PostsOffersPage from './pages/PostsOffersPage'; |
|
|
|
|
import MessagesPage from './pages/MessagesPage'; |
|
|
|
|
import AccountPage from './pages/AccountPage'; |
|
|
|
|
import NotificationsPage from './pages/NotificationsPage'; |
|
|
|
|
import { createAppTheme } from './theme/theme'; |
|
|
|
|
import { OnboardingProvider } from '@/contexts/OnboardingContext'; |
|
|
|
|
import { DataProvider } from '@/providers/DataProvider'; |
|
|
|
|
import { BrowserNGLdoProvider, useNextGraphAuth } from '@/lib/nextgraph'; |
|
|
|
|
import type { NextGraphAuth } from '@/types/nextgraph'; |
|
|
|
|
import DashboardLayout from '@/components/layout/DashboardLayout'; |
|
|
|
|
import SocialContractPage from '@/pages/SocialContractPage'; |
|
|
|
|
import GroupJoinPage from '@/pages/GroupJoinPage'; |
|
|
|
|
import ImportPage from '@/pages/ImportPage'; |
|
|
|
|
import ContactListPage from '@/pages/ContactListPage'; |
|
|
|
|
import ContactViewPage from '@/pages/ContactViewPage'; |
|
|
|
|
import GroupPage from '@/pages/GroupPage'; |
|
|
|
|
import GroupDetailPage from '@/pages/GroupDetailPage'; |
|
|
|
|
import GroupInfoPage from '@/pages/GroupInfoPage'; |
|
|
|
|
import InvitationPage from '@/pages/InvitationPage'; |
|
|
|
|
import OnboardingPage from '@/pages/OnboardingPage'; |
|
|
|
|
import FeedPage from '@/pages/FeedPage'; |
|
|
|
|
import PostsOffersPage from '@/pages/PostsOffersPage'; |
|
|
|
|
import MessagesPage from '@/pages/MessagesPage'; |
|
|
|
|
import AccountPage from '@/pages/AccountPage'; |
|
|
|
|
import NotificationsPage from '@/pages/NotificationsPage'; |
|
|
|
|
import { createAppTheme } from '@/theme/theme'; |
|
|
|
|
import { Container } from '@mui/material'; |
|
|
|
|
|
|
|
|
|
const theme = createAppTheme('light'); |
|
|
|
|