'use client'; import type { BroadcastInfo } from '@/types/broadcast'; import LiveNavbar from './LiveNavbar'; import LiveVideoSection from './LiveVideoSection'; import ChatWindow from '@/components/ChatWindow'; import styles from './styles/LiveLayout.module.scss'; interface LiveLayoutProps { broadcast: BroadcastInfo; } export default function LiveLayout({ broadcast }: LiveLayoutProps) { return (