import { MapPin, Phone, QrCode } from "lucide-react"; import Image from "next/image"; import { business } from "@/config/business"; import type { Messages } from "@/messages"; import AnimatedSection from "./AnimatedSection"; import PhysicsButton from "./PhysicsButton"; export default function ContactSection({ t, whatsappUrl }: { t: Messages; whatsappUrl: string }) { return (

{t.contact.eyebrow}

{t.contact.title}

{t.contact.body}

{t.contact.whatsapp} {t.contact.call} {t.contact.visit}
} /> } /> } wide /> } />
{t.contact.qr}

{t.contact.qr}

{business.displayAddress}

); } function Info({ label, value, icon, wide = false }: { label: string; value: string; icon: React.ReactNode; wide?: boolean }) { return (
{icon}

{label}

{value}

); }