/** * GLOBAL FOOTER * * Appears at the bottom of every page. * * Contains: * - Brand + short tagline * - Both physical locations with full addresses + phone/email * - Opening hours (same for both branches) * - Quick links + social profiles * * Note: The phone numbers and addresses here are the canonical source. * If the restaurant ever changes them, update this file + the contact section * on the homepage + the locations page. */ import Link from "next/link"; import { useLanguage } from "@/lib/language-context"; import { getTranslation } from "@/lib/translations"; export default function Footer() { const { language } = useLanguage(); const t = getTranslation(language); return ( ); }