diff --git a/public/images/hutopymedia/banners/hutopyul.png b/public/images/hutopymedia/banners/hutopyul.png new file mode 100644 index 0000000..ef74cb6 Binary files /dev/null and b/public/images/hutopymedia/banners/hutopyul.png differ diff --git a/src/router/router.js b/src/router/router.js index f3a01e7..b769da4 100644 --- a/src/router/router.js +++ b/src/router/router.js @@ -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', diff --git a/src/views/creators/CreatorLayout.vue b/src/views/creators/CreatorLayout.vue index 2ac38b2..9c48646 100644 --- a/src/views/creators/CreatorLayout.vue +++ b/src/views/creators/CreatorLayout.vue @@ -25,6 +25,5 @@ import CreatorBanner from "@/views/creators/CreatorBanner.vue"; import Footer from "@/views/main/Footer.vue"; import {useBrandingStore} from "@/stores/brandingStore.js"; - const brandingStore = useBrandingStore() diff --git a/src/views/documentation/About.vue b/src/views/documentation/About.vue index 835df87..7e30016 100644 --- a/src/views/documentation/About.vue +++ b/src/views/documentation/About.vue @@ -1,7 +1,6 @@