import type { Metadata } from "next"; import { Mail, MapPin, Phone, Clock } from "lucide-react"; import { SectionTitle } from "@/components/section-title"; import { ContactForm } from "@/components/contact-form"; import { siteConfig } from "@/lib/site-config"; export const metadata: Metadata = { title: "İletişim", description: "Projeniz hakkında konuşmak için bize ulaşın. İzmit Sanayi Sitesi, Kocaeli.", }; export default function ContactPage() { return (
} title="Adres" content={siteConfig.contact.address} /> } title="Telefon" content={ {siteConfig.contact.phone} } /> } title="E-posta" content={ {siteConfig.contact.email} } /> } title="Çalışma Saatleri" content={ <> Hafta içi 09:00 — 18:00
Cumartesi 10:00 — 14:00 } />
); } function InfoCard({ icon, title, content, }: { icon: React.ReactNode; title: string; content: React.ReactNode; }) { return (
{icon}

{title}

{content}
); }