Changes to smoothen page transitions

This commit is contained in:
Nithin David Thomas
2024-02-12 18:09:43 +05:30
parent 2d69cd0fdb
commit 922db887e8
13 changed files with 638 additions and 274 deletions
@@ -75,6 +75,7 @@
}
},
"COMPANY": {
"PAGE_TITLE": "Hello %{userName},\nwe are are almost done.",
"TITLE": "Tell us about your company",
"BODY": "In this section, we'll set up the language, timezone, and company size. This information allows us to provide contextually accurate information and suggest relevant features for you.",
"SUBMIT": {
@@ -8,9 +8,10 @@ import helpcenterRoutes from './helpcenter/helpcenter.routes';
const AppContainer = () => import('./Dashboard.vue');
const Suspended = () => import('./suspended/Index.vue');
// const SetupProfile = () => import('v3/views/onboarding/SetupProfile.vue');
// const SetupCompany = () => import('v3/views/onboarding/SetupCompany.vue');
// const InviteTeam = () => import('v3/views/onboarding/InviteTeam.vue');
const RouteLayout = () => import('v3/views/onboarding/RouteLayout.vue');
const SetupProfile = () => import('v3/views/onboarding/SetupProfile.vue');
const SetupCompany = () => import('v3/views/onboarding/SetupCompany.vue');
const InviteTeam = () => import('v3/views/onboarding/InviteTeam.vue');
// const FoundersNote = () => import('v3/views/onboarding/FoundersNote.vue');
export default {
routes: [
@@ -32,23 +33,30 @@ export default {
roles: ['administrator', 'agent'],
component: Suspended,
},
{
path: frontendURL('accounts/:accountId/start'),
component: RouteLayout,
children: [
{
path: frontendURL('accounts/:accountId/start/setup-profile'),
name: 'onboarding_setup_profile',
component: SetupProfile,
},
{
path: frontendURL('accounts/:accountId/start/setup-company'),
name: 'onboarding_setup_company',
component: SetupCompany,
},
{
path: frontendURL('accounts/:accountId/start/invite-team'),
name: 'onboarding_invite_team',
component: InviteTeam,
},
],
},
// {
// path: frontendURL('accounts/:account_id/start/setup-profile'),
// name: 'onboarding_setup_profile',
// component: SetupProfile,
// },
// {
// path: frontendURL('accounts/:account_id/start/setup-company'),
// name: 'onboarding_setup_company',
// component: SetupCompany,
// },
// {
// path: frontendURL('accounts/:account_id/start/invite-team'),
// name: 'onboarding_invite_team',
// component: InviteTeam,
// },
// {
// path: frontendURL('accounts/:account_id/start/founders-note'),
// path: frontendURL('accounts/:accountId/start/founders-note'),
// name: 'onboarding_founders_note',
// component: FoundersNote,
// },