export type Place = {
  name: string;
  area: string;
  summary: string;
  tip?: string;
};

export const UJJAIN_PLACES: Place[] = [
  {
    name: "Mahakaleshwar Jyotirlinga",
    area: "Mahakal corridor",
    summary:
      "One of the twelve Jyotirlingas and the spiritual heart of Ujjain. The south-facing Mahakal is unique among Jyotirlingas and draws devotees for Bhasma Aarti.",
    tip: "Carry your Kumbh Pass and arrive early on bathing days.",
  },
  {
    name: "Ram Ghat & Shipra River",
    area: "Shipra banks",
    summary:
      "Primary bathing ghats for the Kumbh. Evening aarti, deep daan, and the sacred Shipra form the living pulse of the mela.",
  },
  {
    name: "Kal Bhairav Temple",
    area: "Bhairavgarh",
    summary:
      "Guardian deity of Ujjain. Pilgrims traditionally seek Bhairav’s blessings for protection during their stay in the city.",
  },
  {
    name: "Harsiddhi Temple",
    area: "Near Mahakal",
    summary:
      "A Shakti Peetha associated with Goddess Annapurna. Closely linked to the Mahakal circuit for devotees.",
  },
  {
    name: "Sandipani Ashram",
    area: "Ankpat road",
    summary:
      "Believed to be where Lord Krishna, Balram, and Sudama studied. A calm stop for families and spiritual seekers.",
  },
  {
    name: "Mangalnath Temple",
    area: "North Ujjain",
    summary:
      "Associated with the planet Mars (Mangal) and popular for planetary remedies and quiet worship.",
  },
  {
    name: "Chintaman Ganesh",
    area: "West Ujjain",
    summary:
      "An ancient Ganesh shrine where devotees pray to remove obstacles before major journeys or rituals.",
  },
  {
    name: "Vedh Shala (Jantar Mantar)",
    area: "Freeganj side",
    summary:
      "Astronomical observatory of Maharaja Jai Singh II — a cultural landmark beyond the temple trail.",
  },
  {
    name: "Kaliadeh Palace",
    area: "Shipra island",
    summary:
      "Historic palace on the Shipra with peaceful water views — suited for a reflective evening visit.",
  },
];

export type DistanceRow = {
  from: string;
  to: string;
  distance: string;
  time: string;
  mode: string;
};

export const TRAVEL_DISTANCES: DistanceRow[] = [
  {
    from: "Indore Airport (IDR)",
    to: "Mahakaleshwar Temple",
    distance: "≈ 56–58 km",
    time: "1 hr 15 min – 1 hr 45 min",
    mode: "Taxi / cab via Indore–Ujjain road (NH 52)",
  },
  {
    from: "Indore Airport (IDR)",
    to: "Ujjain city centre",
    distance: "≈ 54–56 km",
    time: "≈ 1 hr 15 min",
    mode: "Taxi / bus / shared cab",
  },
  {
    from: "Ujjain Junction (Railway)",
    to: "Mahakaleshwar Temple",
    distance: "≈ 2–2.5 km",
    time: "10–15 minutes",
    mode: "Auto / e-rickshaw / taxi",
  },
  {
    from: "Dewas Gate Bus Stand",
    to: "Mahakaleshwar Temple",
    distance: "≈ 1.5–2 km",
    time: "5–10 minutes",
    mode: "Auto / short walk on light days",
  },
  {
    from: "Nanakheda Bus Stand",
    to: "Mahakaleshwar Temple",
    distance: "≈ 4–5 km",
    time: "15–25 minutes",
    mode: "Auto / taxi",
  },
];
