feat(copy): wrote some basic copy for the statis pages, landing, prices, products
Some checks failed
Backend CI/CD / build_and_deploy (push) Has been cancelled
Frontend CI/CD / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-05-04 22:08:42 -04:00
parent b7379cf823
commit feef8cbafd
17 changed files with 1583 additions and 147 deletions

View File

@@ -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',