import { useEffect, useState } from "react"; const videos = ["dQw4w9WgXcQ", "M7lc1UVf-VE", "aqz-KE-bpKQ"]; // placeholder IDs export default function HeroCarousel() { const [index, setIndex] = useState(0); useEffect(() => { const id = setInterval(() => setIndex(i => (i + 1) % videos.length), 10000); return () => clearInterval(id); }, []); return (
{/* Background Gradient and animated glows */}
{/* Text */}

Welcome to
Vontor.cz

Creative Tech & Design by Bruno Vontor

{/* Video carousel */}
{videos.map((v,i) => (