chore: add routes
This commit is contained in:
@@ -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>
|
||||
@@ -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,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user