import Image from "next/image"; import Link from "next/link"; const destaques = [ { cat: "FAMOSOS", catColor: "text-pink-600", title: "Cerimónia reúne estrelas nacionais e internacionais em Lisboa.", date: "24 Mar 2025", // High-quality video-style thumbnail img: "https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=800&q=80", }, { cat: "NEGÓCIOS", catColor: "text-[#0066cc]", title: "Mercados reagem às novas projeções de crescimento para a região.", date: "24 Mar 2025", img: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&q=80", }, { cat: "DESPORTO", catColor: "text-emerald-600", title: "Taça: equipa da casa garante lugar nas meias com exibição sólida.", date: "23 Mar 2025", img: "https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=800&q=80", }, { cat: "NEGÓCIOS", catColor: "text-[#0066cc]", title: "Mercados reagem às novas projeções de crescimento para a região.", date: "24 Mar 2025", img: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&q=80", }, ]; export function TvoneDestaquesCultura() { return (

Cultura

{destaques.map((item, index) => (
{/* VIDEO CONTAINER */}
{/* OVERLAY: REPLAY STYLE (iOS/EURO) */}
Replay
{/* BOTTOM REPLICA TAG (Optional, Euro Style) */}
Replica
{/* TEXT CONTENT */}

{item.cat}

{item.title}

{item.date}

))}
); }