/** * Landing Section: Video Embed * * Click-to-play video section with a glassmorphic container. */ import { useState } from 'react' import { Play } from 'lucide-react' import { ScrollReveal, PlaceholderImage, SectionHeading, cn, motion } from '../primitives' const VIDEO_URL = '' const VIDEO_THUMBNAIL = '' const SECTION_TITLE = 'See it in action' const SECTION_SUBTITLE = 'Watch a quick walkthrough of how everything works.' export default function VideoSection() { const [isPlaying, setIsPlaying] = useState(false) return (
{isPlaying && VIDEO_URL ? (