Customization

How do I customize the site configuration?

Modify site name, navigation, and colors in the config file

1 min läsning

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'
};

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'
};

Ämnen

#config #branding