'use client' import Link from 'next/link' const socialLinks = [ { name: 'FACEBOOK', href: 'https://facebook.com' }, { name: 'INSTAGRAM', href: 'https://instagram.com' }, { name: 'LINKEDIN', href: 'https://linkedin.com' }, { name: '***', href: '**' }, ] 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}
))}
) }