import Home from './home/home';
import Profile from './authentication/pages/Profile';
import RedirectGoogle from './authentication/pages/RedirectGoogle';
import RedirectMicrosoft from './authentication/pages/RedirectMicrosoft';
import RedirectFacebook from './authentication/pages/RedirectFacebook';
import { AuthGuard } from './authentication/AuthGuard';
export const routes = [
{ path: '/', element: , text: 'Home', icon: 'home' },
{
path: '/auth/profile',
element: (
),
text: 'Profile',
icon: 'account_circle',
requiresAuth: true
},
{ path: '/auth/redirect-google', element: },
{ path: '/auth/redirect-microsoft', element: },
{ path: '/auth/redirect-facebook', element: },
];