This commit is contained in:
2025-04-18 23:36:23 +03:00
parent 7e798a7a83
commit c8f3c9801f
25 changed files with 380 additions and 315 deletions

View File

@@ -27,7 +27,7 @@ const routes: RouteRecordRaw[] = [
{
name: 'project_add',
path: '/project/add',
component: () => import('pages/CreateProjectPage.vue')
component: () => import('pages/ProjectCreatePage.vue')
},
{
@@ -94,9 +94,38 @@ const routes: RouteRecordRaw[] = [
{
name: 'create_account',
path: '/create-account',
component: () => import('pages/CreateAccountPage.vue')
component: () => import('src/pages/AccountCreatePage.vue')
},
{
name: 'change_account_password',
path: '/change-password',
component: () => import('pages/AccountChangePasswordPage.vue')
},
{
name: 'change_account_email',
path: '/change-email',
component: () => import('pages/AccountChangeEmailPage.vue')
},
{
name: 'subscribe',
path: '/subscribe',
component: () => import('pages/SubscribePage.vue')
},
{
name: 'terms',
path: '/terms-of-use',
component: () => import('pages/TermsPage.vue')
},
{
name: 'privacy',
path: '/privacy',
component: () => import('pages/PrivacyPage.vue')
},
{
name: 'your_company',
path: '/your-company',
component: () => import('src/pages/CompanyYourPage.vue')
},
{
name: 'login',
path: '/login',
@@ -106,13 +135,13 @@ const routes: RouteRecordRaw[] = [
{
name: 'recovery_password',
path: '/recovery-password',
component: () => import('pages/ForgotPasswordPage.vue')
component: () => import('src/pages/AccountForgotPasswordPage.vue')
},
{
name: 'add_company',
path: '/add-company',
component: () => import('pages/CreateCompanyPage.vue')
component: () => import('src/pages/CompanyCreatePage.vue')
},
{
@@ -125,12 +154,6 @@ const routes: RouteRecordRaw[] = [
name: 'settings',
path: '/settings',
component: () => import('pages/SettingsPage.vue')
},
{
name: 'terms',
path: '/terms-of-use',
component: () => import('pages/TermsPage.vue')
}
]
},