feat(copy): wrote some basic copy for the statis pages, landing, prices, products
This commit is contained in:
@@ -2,7 +2,19 @@ import { mkdir, readFile, writeFile } from 'node:fs/promises';
|
||||
import { dirname, resolve } from 'node:path';
|
||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||
|
||||
const publicRoutes = ['/', '/product', '/pricing', '/blogs', '/guides'];
|
||||
const productFeatureRoutes = [
|
||||
'/product/content-planning',
|
||||
'/product/asset-revisions',
|
||||
'/product/comment-threads',
|
||||
'/product/approval-workflows',
|
||||
'/product/client-review',
|
||||
'/product/review-queues',
|
||||
'/product/audit-trail',
|
||||
'/product/workspace-access',
|
||||
'/product/team-collaboration',
|
||||
];
|
||||
|
||||
const publicRoutes = ['/', '/product', ...productFeatureRoutes, '/pricing', '/blogs', '/guides'];
|
||||
|
||||
const rootDir = resolve(dirname(fileURLToPath(import.meta.url)), '..');
|
||||
const distDir = resolve(rootDir, 'dist');
|
||||
|
||||
@@ -4,6 +4,15 @@ import { resolve } from 'node:path';
|
||||
const publicRoutes = [
|
||||
{ path: '/', changefreq: 'weekly', priority: '1.0' },
|
||||
{ path: '/product', changefreq: 'weekly', priority: '0.8' },
|
||||
{ path: '/product/content-planning', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/asset-revisions', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/comment-threads', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/approval-workflows', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/client-review', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/review-queues', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/audit-trail', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/workspace-access', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/product/team-collaboration', changefreq: 'weekly', priority: '0.7' },
|
||||
{ path: '/pricing', changefreq: 'monthly', priority: '0.7' },
|
||||
{ path: '/blogs', changefreq: 'weekly', priority: '0.6' },
|
||||
{ path: '/guides', changefreq: 'weekly', priority: '0.6' },
|
||||
|
||||
Reference in New Issue
Block a user