import { useEffect } from "react"; const YoutubeWidget = () => { useEffect(() => { if (typeof window !== "undefined") { const script = document.createElement("script"); script.src = "https://embedsocial.com/cdn/ht.js"; script.async = true; document.head.appendChild(script); return () => { document.head.removeChild(script); }; } }, []); return (
); }; export default YoutubeWidget;