Change router links for documentation.

This commit is contained in:
PascalMarchesseault
2024-10-11 12:12:48 -04:00
parent 648507b860
commit e02699b541
12 changed files with 124 additions and 68 deletions

View File

@@ -24,6 +24,7 @@ import CreatorContent from "@/views/creators/CreatorContent.vue";
import CreatorHome from "@/views/creators/CreatorHome.vue";
import CTA01 from "@/views/CTA01.vue";
import SubscriptionMenu from "@/views/creators/SubscriptionMenu.vue";
import Utilitylinks from "@/views/documentation/utilitylinks.vue";
const routes = [
@@ -65,44 +66,51 @@ const routes = [
},
]
},
{
path: '/utilitylinks',
component: Utilitylinks,
children: [
{
path: 'helpandcontact',
component: HelpAndContact
},
{
path: 'termsandconditions',
name: 'termsandconditions',
component: TermsAndConditions
},
{
path: 'contentpolicy',
name: 'contentpolicy',
component: ContentPolicy
},
{
path: 'faq',
name: 'FAQ',
component: FAQ
},
{
path: 'guideforcreators',
name: 'guideforcreators',
component: CreatorGuide
},
{
path: 'about',
name: 'about',
component: About
},
{
path: 'pricing',
name: 'pricing',
component: Pricing
},
]
},
{
path: '/content/post',
component: PostContent,
},
{
path: '/helpandcontact',
component: HelpAndContact
},
{
path: '/termsandconditions',
name: 'termsandconditions',
component: TermsAndConditions
},
{
path: '/contentpolicy',
name: 'contentpolicy',
component: ContentPolicy
},
{
path: '/faq',
name: 'FAQ',
component: FAQ
},
{
path: '/guideforcreators',
name: 'guideforcreators',
component: CreatorGuide
},
{
path: '/about',
name: 'about',
component: About
},
{
path: '/pricing',
name: 'pricing',
component: Pricing
},
{
path: '/join',
name: 'join',