"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 */}
{/* Reels grid */}
{/* CTA */}
);
}