"use client"; const reels = [ { id: 1, url: "https://www.instagram.com/reel/C97iqFqoSyl/embed" }, { id: 2, url: "https://www.instagram.com/reel/C-slzOcIQB3/embed" }, { id: 3, url: "https://www.instagram.com/reel/DLM8ng6MOKf/embed" }, { id: 4, url: "https://www.instagram.com/reel/DX-BDErM5qd/embed" }, ]; function InstagramIcon() { return ( ); } export default function InstagramFeed({ dict }: { dict: any }) { return ( {/* Header */} {dict.social.title} {dict.social.heading} @moy_akyaka {/* Reels grid */} {reels.map((reel) => ( {/* Thin coral top border accent */} ))} {/* CTA */} {dict.social.button} ); }