/* VA Classes, branded vector illustrations of a live online class. One per subject. Pure SVG in brand theme (ink #14130E, paper, VA yellow #FFC700). No photos, clean edtech vector art. */ function WhiteboardContent({ subject }) { // Subject-specific "what's on the shared whiteboard", drawn simply, on-brand. if (subject === "Math") { return ( 7 × 8 = 56 ½+¼ ); } if (subject === "Science") { return ( {/* atom */} {/* beaker */} ); } if (subject === "English") { return ( Aa “” ); } // Coding return ( {""} {"print("}"hi!"{")"} {""} ); } function SubjectScene({ subject }) { return (
{/* soft brand blobs */} {/* device / browser window */} {/* top bar */} {/* LIVE badge */} LIVE {/* whiteboard */} {/* tutor video tile */} {/* student video tile */} {/* control bar */} {/* floating accents */}
); } Object.assign(window, { SubjectScene });