"use client"; import ContactForm from "./ContactForm"; import { useLang } from "@/context/LanguageContext"; import { t } from "@/lib/translations"; const MAP_SRC = "https://maps.google.com/maps?q=-6.35861,106.8111146&z=16&output=embed"; export default function ContactPage() { const { lang } = useLang(); const tr = t[lang].contact; const contactInfo = [ { icon: "language", title: "Website", value: "www.iptek.co", href: "https://www.iptek.co", sub: null, }, { icon: "chat", title: "WhatsApp", value: "+62 817 221 121", href: "https://wa.me/62817221121", sub: null, }, { icon: "mail", title: "Email", value: "support@iptek.co", href: "mailto:support@iptek.co", sub: null, }, { icon: "location_on", title: lang === "id" ? "Kantor" : "Office", value: "Jl. Srengseng Sawah No.51 C", href: "https://maps.google.com/?q=-6.35861,106.8111146", sub: "Kel. Srengseng Sawah, Jagakarsa\nJakarta Selatan, DKI Jakarta 12640", }, ]; return ( <> {/* Header */}

{tr.badge}

{tr.heroTitle}

{tr.heroSub}

{/* Sidebar */}

{tr.infoTitle}

{tr.infoSub}

{contactInfo.map((item) => (
{item.icon}

{item.title}

{item.value}

{item.sub && (

{item.sub}

)}
))}
{/* Map */}