'use client'; interface LiveStreamSectionProps { show: boolean; onClose: () => void; } export default function LiveStreamSection({ show, onClose }: LiveStreamSectionProps) { if (!show) return null; return (

Canlı Yayın

{/* YouTube Video Embed */}

A2 Metro Hattı İnşaat Çalışmaları - Canlı Yayın

); }