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 = [
{
path: '/cta01',
component: CTA01,
meta: {hideSideBar: true}
component: CTA01
},
{
path: '/',
component: Home,
meta: {hideSideBar: true}
component: Home
},
{
path: '/browse',
@@ -64,56 +62,47 @@ const routes = [
},
{
path: '/helpandcontact',
component: HelpAndContact,
meta: {hideSideBar: true}
component: HelpAndContact
},
{
path: '/termsandconditions',
name: 'termsandconditions',
component: TermsAndConditions,
meta: {hideSideBar: true}
component: TermsAndConditions
},
{
path: '/contentpolicy',
name: 'contentpolicy',
component: ContentPolicy,
meta: {hideSideBar: true}
component: ContentPolicy
},
{
path: '/faq',
name: 'FAQ',
component: FAQ,
meta: {hideSideBar: true}
component: FAQ
},
{
path: '/guideforcreators',
name: 'guideforcreators',
component: CreatorGuide,
meta: {hideSideBar: true}
component: CreatorGuide
},
{
path: '/about',
name: 'about',
component: About,
meta: {hideSideBar: true}
component: About
},
{
path: '/pricing',
name: 'pricing',
component: Pricing,
meta: {hideSideBar: true}
component: Pricing
},
{
path: '/join',
name: 'join',
component: Join,
meta: {hideSideBar: true}
component: Join
},
{
path: '/register',
name: 'register',
component: Register,
meta: {hideSideBar: true}
component: Register
},
{
path: '/signup',
@@ -129,6 +118,7 @@ const routes = [
path: '/paymentcompleted',
name: 'PaymentCompleted',
component: PaymentCompleted,
meta: {requiresAuth: true}
},
{
path: '/wallet',