export const siteConfig = {
  name: "КИЛН",
  domain: "kiln.spb.ru",
  description: "Камерный мясной рестобар и дровяная печь на улице Чайковского.",
  slogan: "Мясо, дым, время и немного магии",
  address: "Санкт-Петербург, улица Чайковского, 36",
  coordinates: { lat: 59.946698, lng: 30.357595 },
  metro: "Чернышевская",
  phone: "+7 991 000 92 00",
  phoneHref: "tel:+79910009200",
  email: "hello@kiln.spb.ru",
  hours: "Ежедневно 12:00-23:00",
  priceRange: "₽₽",
  yandex: {
    rating: "4,8",
    ratingsCount: "1200+",
    reviewsCount: "1200+",
    award: "Хорошее место",
    mapsUrl: "https://yandex.ru/maps/org/kiln/22727621504/?from=mapframe&ll=30.357595%2C59.946698&z=16",
    reviewsUrl: "https://yandex.ru/maps/org/kiln/22727621504/?from=mapframe&ll=30.357595%2C59.946698&z=16",
    reviewWriteUrl: "https://yandex.ru/maps/org/kiln/22727621504/?from=mapframe&ll=30.357595%2C59.946698&z=16",
    routeUrl: "https://yandex.ru/maps/org/kiln/22727621504/?from=mapframe&ll=30.357595%2C59.946698&z=16"
  },
  social: [
    { title: "Telegram", href: "https://t.me/" },
    { title: "VK", href: "https://vk.com/" }
  ],
  order: {
    minimumAmount: 1200,
    freeDeliveryFrom: 2500,
    deliveryPrice: 350,
    averageCookingTime: "35-45 минут",
    pickupNote: "Самовывоз с улицы Чайковского, 36"
  },
  features: {
    deliveryEnabled: true,
    pickupEnabled: true,
    bookingEnabled: true,
    eventsEnabled: false,
    loyaltyEnabled: false,
    onlinePaymentEnabled: false
  }
} as const;

export const publicNav = [
  { href: "/legend", label: "О нас", feature: null },
  { href: "/menu", label: "Меню", feature: null },
  { href: "/bar", label: "Барная карта", feature: null },
  { href: "/gallery", label: "Галерея", feature: null },
  { href: "/contacts", label: "Контакты", feature: null }
] as const;

export function isFeatureEnabled(feature: keyof typeof siteConfig.features | null) {
  return feature ? siteConfig.features[feature] : true;
}
