import React from "react" import { cn } from "@/lib/utils" interface YouTubeEmbedProps { videoId: string title: string caption?: string className?: string } export const YouTubeEmbed: React.FC = ({ videoId, title, caption, className, }) => { return (