"use client"; export interface InstagramPost { id: string; url: string; imageUrl: string; caption: string; isVideo: boolean; } function InstagramIcon() { return ( ); } export default function InstagramFeed({ dict, posts = [] }: { dict: any, posts?: InstagramPost[] }) { return (
{/* Header */}

{dict.social.title}

{dict.social.heading}

@moy_akyaka
{/* Reels grid */}
{posts.map((post) => ( {/* Thin coral top border accent */}
{post.caption {/* Hover Overlay */}
{post.isVideo ? ( ) : ( )}
{post.caption && (

{post.caption}

)}
))}
{/* CTA */}
{dict.social.button}
); }