Site Configuration
All site-wide settings are in src/config.ts:
export const SITE = {
name: 'Your Site Name',
title: 'Your Page Title',
description: 'Your site description',
url: 'https://your-domain.com',
language: 'en'
};
Navigation
Update the navigation links:
export const NAV = {
main: [
{ label: 'Home', href: '/' },
{ label: 'FAQ', href: '/faq' },
{ label: 'Contact', href: '/contact' }
]
};
Colors
Customize the color scheme:
export const COLORS = {
primary: '#2563eb',
secondary: '#64748b',
accent: '#f59e0b'
};