Remove 'hideSideBar' from router, not used anymore

This commit is contained in:
2024-10-06 01:41:56 -04:00
parent 34d51f2c85
commit 18e551ad60

View File

@@ -28,13 +28,11 @@ import CTA01 from "@/views/CTA01.vue";
const routes = [ const routes = [
{ {
path: '/cta01', path: '/cta01',
component: CTA01, component: CTA01
meta: {hideSideBar: true}
}, },
{ {
path: '/', path: '/',
component: Home, component: Home
meta: {hideSideBar: true}
}, },
{ {
path: '/browse', path: '/browse',
@@ -64,56 +62,47 @@ const routes = [
}, },
{ {
path: '/helpandcontact', path: '/helpandcontact',
component: HelpAndContact, component: HelpAndContact
meta: {hideSideBar: true}
}, },
{ {
path: '/termsandconditions', path: '/termsandconditions',
name: 'termsandconditions', name: 'termsandconditions',
component: TermsAndConditions, component: TermsAndConditions
meta: {hideSideBar: true}
}, },
{ {
path: '/contentpolicy', path: '/contentpolicy',
name: 'contentpolicy', name: 'contentpolicy',
component: ContentPolicy, component: ContentPolicy
meta: {hideSideBar: true}
}, },
{ {
path: '/faq', path: '/faq',
name: 'FAQ', name: 'FAQ',
component: FAQ, component: FAQ
meta: {hideSideBar: true}
}, },
{ {
path: '/guideforcreators', path: '/guideforcreators',
name: 'guideforcreators', name: 'guideforcreators',
component: CreatorGuide, component: CreatorGuide
meta: {hideSideBar: true}
}, },
{ {
path: '/about', path: '/about',
name: 'about', name: 'about',
component: About, component: About
meta: {hideSideBar: true}
}, },
{ {
path: '/pricing', path: '/pricing',
name: 'pricing', name: 'pricing',
component: Pricing, component: Pricing
meta: {hideSideBar: true}
}, },
{ {
path: '/join', path: '/join',
name: 'join', name: 'join',
component: Join, component: Join
meta: {hideSideBar: true}
}, },
{ {
path: '/register', path: '/register',
name: 'register', name: 'register',
component: Register, component: Register
meta: {hideSideBar: true}
}, },
{ {
path: '/signup', path: '/signup',
@@ -129,6 +118,7 @@ const routes = [
path: '/paymentcompleted', path: '/paymentcompleted',
name: 'PaymentCompleted', name: 'PaymentCompleted',
component: PaymentCompleted, component: PaymentCompleted,
meta: {requiresAuth: true}
}, },
{ {
path: '/wallet', path: '/wallet',