From 8a274e06236cfd49bac88a409da39962ad8c452b Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Thu, 9 Apr 2026 12:02:14 +0100 Subject: [PATCH] change card --- app/components/cultura.tsx | 39 ++++--- app/components/tvone-promo-strip.tsx | 6 - app/components/video-galary.tsx | 168 ++++++++++++++++++++++++++- 3 files changed, 188 insertions(+), 25 deletions(-) diff --git a/app/components/cultura.tsx b/app/components/cultura.tsx index 0a0d1e0..23007eb 100644 --- a/app/components/cultura.tsx +++ b/app/components/cultura.tsx @@ -105,12 +105,27 @@ const destaques = [ export function TvoneDestaquesCultura() { return (
-
-

Cultura

- {/* Optional secondary link style for iOS */} - - Explorar tudo - + {/* Cabeçalho Minimalista com Link Azul */} +
+

+ Cultura +

+ + + Ver tudo + + + +
@@ -149,18 +164,6 @@ export function TvoneDestaquesCultura() { ))}
- {/* iOS STYLE "SEE MORE" BUTTON */} -
- - Ver mais notícias de Cultura - - - - -
); } \ No newline at end of file diff --git a/app/components/tvone-promo-strip.tsx b/app/components/tvone-promo-strip.tsx index cf0974e..b2e33e9 100644 --- a/app/components/tvone-promo-strip.tsx +++ b/app/components/tvone-promo-strip.tsx @@ -37,12 +37,6 @@ function PromoStripSingleSlide({ photo, onRatioLoad }: SlideProps) { }} /> - {/* Label Interna - Estilo Premium/iOS */} -
- - Destaque - -
); } diff --git a/app/components/video-galary.tsx b/app/components/video-galary.tsx index 2d8695a..4e27ad3 100644 --- a/app/components/video-galary.tsx +++ b/app/components/video-galary.tsx @@ -80,7 +80,28 @@ export function TvoneMainColumns1() { return (
-

Vídeos Mais Recentes

+ {/* Cabeçalho Minimalista com Link Azul */} +
+

+ Vídeos Recentes +

+ + + Ver tudo + + + + +
@@ -145,4 +166,149 @@ function AppleIcon({ className }: { className?: string }) { ); +} + +const entrevistas = [ + { + guest: "CEO da Unitel", + title: "O futuro do 5G em Angola e a expansão da conectividade rural", + img: "https://images.unsplash.com/photo-1560250097-0b93528c311a?q=80&w=800&auto=format&fit=crop", + }, + { + guest: "Sandra Rodrigues", + title: "Como a inteligência artificial está a mudar o jornalismo digital", + img: "https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?q=80&w=800&auto=format&fit=crop", + }, + { + guest: "Fundador da Startup X", + title: "O desafio de escalar uma fintech no mercado africano atual", + img: "https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?q=80&w=800&auto=format&fit=crop", + }, +]; + + +const negocios = [ + { + category: "Investimento", + title: "Banca nacional regista crescimento de 15% no crédito à produção", + description: "Novas medidas de estímulo económico impulsionam o setor agrícola e industrial neste trimestre.", + readTime: "5", + img: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=800&auto=format&fit=crop", + }, + { + category: "Tecnologia", + title: "Hub tecnológico em Luanda atrai investidores estrangeiros", + description: "Empresas de capital de risco olham para o ecossistema de startups angolano com novo otimismo.", + readTime: "4", + img: "https://images.unsplash.com/photo-1559136555-9303baea8ebd?q=80&w=800&auto=format&fit=crop", + }, + { + category: "Mercados", + title: "Preço das commodities: O impacto direto na inflação local", + description: "Análise profunda sobre como a volatilidade externa está a moldar os preços no consumidor final.", + readTime: "7", + img: "https://images.unsplash.com/photo-1590283603385-17ffb3a7f29f?q=80&w=800&auto=format&fit=crop", + }, +]; + +export function TvoneEntrevistas() { + return ( +
+
+

Entrevistas

+

Conversas exclusivas com quem move o mercado e a cultura.

+
+ + {/* Grid de 3 colunas para estilo Premium/Apple */} +
+ {entrevistas.map((item, index) => ( +
+ +
+ {item.title} +
+ +
+ {item.guest} +

+ "{item.title}" +

+
+
+ +
+ ))} +
+
+ ); +} + +export function TvoneNegocios() { + return ( +
+ {/* Cabeçalho Minimalista com Link Azul */} +
+

+ Negócios +

+ + + Ver tudo + + + + +
+ +
+ {negocios.map((item, index) => ( +
+
+ +
+ +
+ + {item.category} + + +

+ {item.title} +

+ +

+ {item.description} +

+ +
+
+ + {item.readTime} min de leitura + +
+
+
+ ))} +
+
+ ); } \ No newline at end of file