export default [ { path: "/login", name: "login-page", component: () => import("@/views/login/Login.vue"), meta: { layout: "auth", title: "SignIn", }, }, { path: "/auth/signin", name: "auth-signin", component: () => import( /* webpackChunkName: "auth-signin" */ "@/views/auth/SigninPage.vue" ), meta: { layout: "auth", title: "SignIn", }, }, { path: "/auth/signup", name: "auth-signup", component: () => import( /* webpackChunkName: "auth-signup" */ "@/views/auth/SignupPage.vue" ), meta: { layout: "auth", title: "SignUp", }, }, { path: "/auth/verify-email", name: "verify-email", component: () => import( /* webpackChunkName: "verify-email" */ "@/views/auth/VerifyEmailPage.vue" ), meta: { requiresAuth: true, layout: "auth", title: "VerifyEmail", }, }, { path: "/auth/forgot-password", name: "auth-forgot", component: () => import( /* webpackChunkName: "auth-forgot" */ "@/views/auth/ForgotPage.vue" ), meta: { requiresAuth: true, layout: "auth", title: "ForgotPage", }, }, { path: "/auth/reset-password", name: "auth-reset", component: () => import(/* webpackChunkName: "auth-reset" */ "@/views/auth/ResetPage.vue"), meta: { requiresAuth: true, layout: "auth", title: "ResetPage", }, }, ];