feat(copy): wrote some basic copy for the statis pages, landing, prices, products
This commit is contained in:
@@ -4,6 +4,7 @@ import { createRouter, createWebHistory } from 'vue-router';
|
||||
const LoginView = () => import('@/features/auth/views/LoginView.vue');
|
||||
const Landing = () => import('@/features/landing/views/Landing.vue');
|
||||
const ProductPage = () => import('@/features/landing/views/ProductPage.vue');
|
||||
const ProductFeaturePage = () => import('@/features/landing/views/ProductFeaturePage.vue');
|
||||
const PricingPage = () => import('@/features/landing/views/PricingPage.vue');
|
||||
const BlogsPage = () => import('@/features/landing/views/BlogsPage.vue');
|
||||
const GuidesPage = () => import('@/features/landing/views/GuidesPage.vue');
|
||||
@@ -41,6 +42,11 @@ const routes = [
|
||||
name: 'product',
|
||||
component: ProductPage,
|
||||
},
|
||||
{
|
||||
path: '/product/:featureSlug',
|
||||
name: 'product-feature',
|
||||
component: ProductFeaturePage,
|
||||
},
|
||||
{
|
||||
path: '/pricing',
|
||||
name: 'pricing',
|
||||
|
||||
Reference in New Issue
Block a user