"use client"; import { useEffect } from "react"; export function InstagramFeed() { useEffect(() => { // Load LightWidget script for Instagram feed const script = document.createElement('script'); script.src = 'https://cdn.lightwidget.com/widgets/lightwidget.js'; script.async = true; document.body.appendChild(script); return () => { // Cleanup script on unmount if (document.body.contains(script)) { document.body.removeChild(script); } }; }, []); return (

Latest from our studio:

{/* Instagram Feed Grid - Posts Only */}
{/* @ts-ignore - allowTransparency is valid for iframe */}