import { ArrowRight, Camera } from "lucide-react"; import ScrollReveal from "@/components/ScrollReveal"; interface InstagramFeedProps { instagramPosts: any[]; lang: string; } export default function InstagramFeed({ instagramPosts, lang }: InstagramFeedProps) { if (!instagramPosts || instagramPosts.length === 0) { return null; } return (
@kitebeachakyaka

Instagram

{instagramPosts.map((post: any) => ( {/* eslint-disable-next-line @next/next/no-img-element */} {post.caption?.text?.substring(0,

{post.caption?.text}

))}
{lang === "en" ? "Follow Us" : "Bizi Takip Edin"}
); }