import { MapPin, Phone, Clock, Instagram } from "lucide-react"; import { BRAND } from "@/lib/constants"; import { SectionHeading } from "@/components/ui/SectionHeading"; import { Reveal } from "@/components/ui/Reveal"; import { IconBadge } from "@/components/ui/IconBadge"; import type { ContactInfo } from "@/types/content"; interface ContactProps { data: ContactInfo; } export function Contact({ data: contact }: ContactProps) { return (
{contact.title}
{contact.addresses.map((address, i) => (

{address}

))}

{contact.workingHours}