import { useEffect } from "react"; export function PhotoGallery() { useEffect(() => { // Load Curator.io script const script = document.createElement("script"); script.type = "text/javascript"; script.async = true; script.charset = "UTF-8"; script.src = "https://cdn.curator.io/published/1964cded-8962-41c1-b7c1-d36f02707c7a.js"; // Insert script before the closing body tag document.body.appendChild(script); // Cleanup function to remove script when component unmounts return () => { if (document.body.contains(script)) { document.body.removeChild(script); } }; }, []); return (

Follow My Journey

{/* Curator.io Instagram Feed */}
); }