import type { TourDefinition } from './types'; import { appointmentsTour } from './tours/appointments'; /** هر صفحه تور خودش را در tours/ دارد و فقط اینجا ثبت می‌شود. */ export const TOURS: Record = { [appointmentsTour.id]: appointmentsTour, }; export function getTour(id?: string): TourDefinition | null { return id ? TOURS[id] ?? null : null; }