import Image from "next/image"; import { Mail, MapPin, Phone, Check } from "lucide-react"; import ContactHeader from "./contactHeader"; import Form from "./form"; import { useTranslations } from "next-intl"; export function Contact() { const t = useTranslations(); const contactInfo = [ { icon: Mail, title:t("contact.email"), detail: t("contact.emailAddress"), }, { icon: MapPin, title: t("contact.location"), detail: t("contact.address"), }, { icon: Phone, title: t("contact.phone"), detail: "+123-456-7890", }, ]; return (
{/* Background Image */}
Contact background {/* Radial Gradient Overlay */}
{/* Content */}
{/* Contact Info */}
{contactInfo.map((info) => (

{info.title}

{info.detail}

))}
); }