import { useEffect } from "react"; import { Play } from "lucide-react"; export default function PinkuDroneHome() { useEffect(() => { document.body.classList.add("bg-black"); }, []); const videos = [ { id: "VIDEO_ID_1", title: "Tesla Model Y Juniper – Winter Storm Test", thumb: "https://img.youtube.com/vi/VIDEO_ID_1/hqdefault.jpg", }, { id: "VIDEO_ID_2", title: "Best Gadgets I Use Daily in 2026", thumb: "https://img.youtube.com/vi/VIDEO_ID_2/hqdefault.jpg", }, { id: "VIDEO_ID_3", title: "Model 3 Highland vs Juniper – Honest Review", thumb: "https://img.youtube.com/vi/VIDEO_ID_3/hqdefault.jpg", }, ]; return (
{/* NAVBAR */}
PinkuDrone PinkuDrone
{/* HERO FEATURE VIDEO */}
{videos[0].title}

{videos[0].title}

Watch Now
{/* VIDEO GRID (MKBHD-STYLE CARDS) */}

Latest Videos

{videos.map((v) => (
{v.title}

{v.title}

))}
{/* FOOTER */}
); }