chore: add routes

This commit is contained in:
Shivam Mishra
2023-12-01 18:09:46 +05:30
parent bc6e3e598f
commit ae0eac9474
4 changed files with 51 additions and 0 deletions
@@ -0,0 +1,11 @@
<template>
<div
class="px-8 py-24 font-bold dark:text-white bg-woot-25 dark:bg-slate-900"
>
<h2 class="text-3xl text-center">Founders Note</h2>
</div>
</template>
<script>
export default {};
</script>
@@ -0,0 +1,11 @@
<template>
<div
class="px-8 py-24 font-bold dark:text-white bg-woot-25 dark:bg-slate-900"
>
<h2 class="text-3xl text-center">Setup Company</h2>
</div>
</template>
<script>
export default {};
</script>
@@ -0,0 +1,11 @@
<template>
<div
class="px-8 py-12 font-bold dark:text-white bg-woot-25 dark:bg-slate-900"
>
<h2 class="text-3xl">Setup Your Profile</h2>
</div>
</template>
<script>
export default {};
</script>
+18
View File
@@ -5,6 +5,9 @@ const Signup = () => import('./auth/signup/Index.vue');
const ResetPassword = () => import('./auth/reset/password/Index.vue');
const Confirmation = () => import('./auth/confirmation/Index.vue');
const PasswordEdit = () => import('./auth/password/Edit.vue');
const SetupUser = () => import('./auth/start/SetupUser.vue');
const SetupCompany = () => import('./auth/start/SetupCompany.vue');
const FounderNote = () => import('./auth/start/FounderNote.vue');
export default [
{
@@ -53,4 +56,19 @@ export default [
name: 'auth_reset_password',
component: ResetPassword,
},
{
path: frontendURL('auth/start/setup-user'),
name: 'onboarding_setup_user',
component: SetupUser,
},
{
path: frontendURL('auth/start/setup-company'),
name: 'onboarding_setup_company',
component: SetupCompany,
},
{
path: frontendURL('auth/start/founders-note'),
name: 'onboarding_founders_note',
component: FounderNote,
},
];