/** * LOCATIONS PAGE * * Dedicated page for the restaurant's two physical branches. * * ARCHITECTURE: * - Two branches are modeled as distinct concepts: * 1. Shahi Kitchen Askim (Sisjön) → Full restaurant + famous lunch buffet * 2. Shahi Sweets Backaplan → Sweets, snacks, café, halwa puri etc. * - Both are operated by the same team (explicitly stated at the bottom) * - Google Maps embeds are intentionally simple (lazy loaded) * * FUTURE: * - When real online ordering launches, this page could show "Order from Askim" * vs "Order from Backaplan" with different delivery radii. * - Both branches now have the same opening hours. */ 'use client'; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; import { useLanguage } from "@/lib/language-context"; import { getTranslation } from "@/lib/translations"; export default function LocationsPage() { const { language } = useLanguage(); const t = getTranslation(language); return (
{language === 'sv' ? 'Två restauranger i Göteborg — båda serverar autentiska smaker med samma shahi gästfrihet.' : 'Two branches in Gothenburg — both serving authentic flavors with the same Shahi hospitality.'}