From 6bce9ada4fd37f89cac5cef487712eeed2aa6969 Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Sun, 5 Apr 2026 14:25:03 +0100 Subject: [PATCH] add video player --- app/components/tvone-content.tsx | 14 +-- app/components/tvone-hero.tsx | 6 +- app/components/video-galary.tsx | 141 ++++++++++++++++++++----------- 3 files changed, 100 insertions(+), 61 deletions(-) diff --git a/app/components/tvone-content.tsx b/app/components/tvone-content.tsx index 8c59559..35d45ff 100644 --- a/app/components/tvone-content.tsx +++ b/app/components/tvone-content.tsx @@ -144,7 +144,7 @@ export function TvoneDestaques() { className="group overflow-hidden bg-white transition " > -
+
+
-

Mais Recentes

+

Vídeos Recentes

    {recentes.map((item) => ( -
  • - -
    +
  • + +
    diff --git a/app/components/tvone-hero.tsx b/app/components/tvone-hero.tsx index 890fe3e..fcaae3c 100644 --- a/app/components/tvone-hero.tsx +++ b/app/components/tvone-hero.tsx @@ -37,13 +37,13 @@ export function TvoneHero() { return (
    -
    -
    +
    +
    diff --git a/app/components/video-galary.tsx b/app/components/video-galary.tsx index e5a4bb6..f0eee19 100644 --- a/app/components/video-galary.tsx +++ b/app/components/video-galary.tsx @@ -9,7 +9,8 @@ const recentes = [ catBg: "bg-blue-50 text-blue-600", byline: "Por Redação", date: "04 Mar 2026", - img: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=800&q=80", + // Premium Studio Image + img: "https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=800&auto=format&fit=crop", }, { title: "Inflação desce pelo terceiro mês consecutivo em Angola, segundo dados preliminares.", @@ -18,7 +19,8 @@ const recentes = [ catBg: "bg-green-50 text-green-600", byline: "Por Economia Viva", date: "03 Mar 2026", - img: "https://images.unsplash.com/photo-1611974715853-2b8ef9a3d136?w=800&q=80", + // Modern Finance/City Image + img: "https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?q=80&w=800&auto=format&fit=crop", }, { title: "Museu de Luanda inaugura exposição com obras inéditas de artistas locais.", @@ -27,10 +29,40 @@ const recentes = [ catBg: "bg-purple-50 text-purple-600", byline: "Por Cultura Mais", date: "02 Mar 2026", - img: "https://images.unsplash.com/photo-1518998053502-53cc8ef19a7d?w=800&q=80", + // Elegant Art Gallery Image + img: "https://images.unsplash.com/photo-1507676184212-d03ab07a01bf?q=80&w=800&auto=format&fit=crop", }, + { + title: "Diddy na XB Label? Gerilson Israel responde após anúncio de nova música em conjunto.", + excerpt: "O artista angolano esclareceu os rumores sobre a sua possível entrada para a editora internacional...", + cat: "Música", + catBg: "bg-blue-50 text-blue-600", + byline: "Por Redação", + date: "04 Mar 2026", + // Premium Studio Image + img: "https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=800&auto=format&fit=crop", + }, + { + title: "Inflação desce pelo terceiro mês consecutivo em Angola, segundo dados preliminares.", + excerpt: "Os preços dos bens de consumo registaram uma ligeira queda, trazendo alívio para as famílias...", + cat: "Economia", + catBg: "bg-green-50 text-green-600", + byline: "Por Economia Viva", + date: "03 Mar 2026", + // Modern Finance/City Image + img: "https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?q=80&w=800&auto=format&fit=crop", + }, + { + title: "Inflação desce pelo terceiro mês consecutivo em Angola, segundo dados preliminares.", + excerpt: "Os preços dos bens de consumo registaram uma ligeira queda, trazendo alívio para as famílias...", + cat: "Economia", + catBg: "bg-green-50 text-green-600", + byline: "Por Economia Viva", + date: "03 Mar 2026", + // Modern Finance/City Image + img: "https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?q=80&w=800&auto=format&fit=crop", + }, ]; - const aSeguir = [ { title: "Mercado imobiliário: especialistas explicam tendências para 2026.", @@ -46,57 +78,64 @@ const recentes = [ export function TvoneMainColumns1() { return ( -
    - - {/* SECTION: PREMIUM VIDEO GALLERY (Euronews + iOS Style) */} -
    - {/* Main Player Area */} -
    - Main Video - {/* iOS Play Button Overlay */} -
    -
    -
    +
    +
    +

    Vídeos Mais Recentes

    +
    + + + {/* SECTION: PREMIUM VIDEO GALLERY (Euronews + iOS Style) */} +
    + {/* Main Player Area */} +
    + Main Video + {/* iOS Play Button Overlay */} +
    +
    +
    +
    +
    + {/* Video Info Overlay */} +
    + Música +

    + Diddy na XB Label? Gerilson Israel responde após anúncio... +

    +
    -
    - {/* Video Info Overlay */} -
    - Música -

    - Diddy na XB Label? Gerilson Israel responde após anúncio... -

    -
    + + {/* Right Playlist: "Vídeos a Seguir" */} + +
    + +
    - - {/* Right Playlist: "Vídeos a Seguir" */} -
    - -
    + ); }