import { lazy } from 'react'; // project imports import Loadable from 'ui-component/Loadable'; import MinimalLayout from 'layout/MinimalLayout'; // login option 3 routing const AuthLogin = Loadable(lazy(() => import('views/Authentication/Auth/Login'))); const AuthRegister = Loadable(lazy(() => import('views/Authentication/Auth/Register'))); const GitHubOAuth = Loadable(lazy(() => import('views/Authentication/Auth/GitHubOAuth'))); const ForgetPassword = Loadable(lazy(() => import('views/Authentication/Auth/ForgetPassword'))); const ResetPassword = Loadable(lazy(() => import('views/Authentication/Auth/ResetPassword'))); const Home = Loadable(lazy(() => import('views/Home'))); const About = Loadable(lazy(() => import('views/About'))); const NotFoundView = Loadable(lazy(() => import('views/Error'))); const Jump = Loadable(lazy(() => import('views/Jump'))); // ==============================|| AUTHENTICATION ROUTING ||============================== // const OtherRoutes = { path: '/', element: , children: [ { path: '', element: }, { path: '/about', element: }, { path: '/login', element: }, { path: '/register', element: }, { path: '/reset', element: }, { path: '/user/reset', element: }, { path: '/oauth/github', element: }, { path: '/404', element: }, { path: '/jump', element: } ] }; export default OtherRoutes;