"use client"; const socials = [ { label: "Instagram", href: "https://instagram.com/moybeachakyaka", icon: ( ), }, { label: "Facebook", href: "https://facebook.com/moybeachakyaka", icon: ( ), }, { label: "YouTube", href: "https://youtube.com/@moybeach", icon: ( ), }, ]; export default function Footer({ dict }: { dict: any }) { const links = [ { label: dict.nav.about, href: "#about" }, { label: dict.nav.services, href: "#services" }, { label: dict.nav.gallery, href: "#gallery" }, { label: dict.nav.contact, href: "#contact" }, ]; return ( ); }