astro_avtourist/frontend/src/constants.ts

25 lines
957 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const SITE_URL = 'https://avtourist-surgut.ru/';
export const SITE_TITLE_SUFFIX = ' | Автоюрист Сургут';
// ============================================
// КОНСТАНТЫ САЙТА "Автоюрист 086"
// ============================================
// Основная информация о компании
export const COMPANY = {
name: 'Автоюрист 086',
fullName: 'Центр защиты прав водителей "Автоюрист 086"',
phone: '+7 (922) 253-83-75',
email: 'info@avtourist086.ru',
address: 'г. Сургут, ул. Примерная, д. 1',
workHours: 'Пн-Пт: 9:00 - 18:00',
} as const;
// Навигация
export const NAV_LINKS = [
{ name: 'Услуги', url: '/services' },
{ name: 'Кейсы', url: '/cases' },
{ name: 'Блог', url: '/blog' },
{ name: 'Отзывы', url: '/reviews' },
{ name: 'Контакты', url: '/contacts' },
] as const;