From 9996f1051ce92935e2a37cc1a1a12f5020c11ffd Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Sun, 5 Apr 2026 15:48:33 +0100 Subject: [PATCH] add galary --- app/components/cultura.tsx | 89 ++++++++++++++++++++++++++++++++++++++ app/page.tsx | 2 + 2 files changed, 91 insertions(+) create mode 100644 app/components/cultura.tsx diff --git a/app/components/cultura.tsx b/app/components/cultura.tsx new file mode 100644 index 0000000..a3684bc --- /dev/null +++ b/app/components/cultura.tsx @@ -0,0 +1,89 @@ +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}

+
+ +
+ ))} +
+
+ ); +} \ No newline at end of file diff --git a/app/page.tsx b/app/page.tsx index e22e75c..b10f7ca 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -9,6 +9,7 @@ import { TvoneMainColumns, } from "./components/tvone-content"; import { TvoneMainColumns1 } from "./components/video-galary"; +import { TvoneDestaquesCultura } from "./components/cultura"; export default function Home() { return ( @@ -22,6 +23,7 @@ export default function Home() { +