'use client' import Link from 'next/link' const socialLinks = [ { name: 'INSTAGRAM (MİMAR)', href: 'https://www.instagram.com/mimaraycanurturan_/' }, { name: 'INSTAGRAM (KİŞİSEL)', href: 'https://www.instagram.com/aycanurturan_/' }, ] const offices = [ { num: '01', name: 'Fethiye | Merkez Ofis', address: 'Karagözler, 48300 Fethiye/Muğla', phone: '0553 093 72 25' } ] export default function ContactPage() { return (
{socialLinks.map((link) => ( {link.name} ))}
{offices.map((office) => (
{office.num}
{office.name}
{office.address}
{office.phone}
))}
) }