Merge version_4 into main #6
99
src/app/cultura/page.tsx
Normal file
99
src/app/cultura/page.tsx
Normal file
@@ -0,0 +1,99 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Newspaper, AlertCircle, Star, Palette, MapPin, Clock, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function CulturePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Tecnología", id: "/tecnologia" },
|
||||
{ name: "Política", id: "/politica" },
|
||||
{ name: "Cultura", id: "/cultura" },
|
||||
{ name: "Internacional", id: "/internacional" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="culture-featured" data-section="culture-featured">
|
||||
<BlogCardOne
|
||||
title="Cultura - Arte y Entretenimiento"
|
||||
description="Descubre las últimas tendencias en arte, cine, música, literatura y entretenimiento que están definiendo la cultura actual."
|
||||
tag="Cultura"
|
||||
tagIcon={Palette}
|
||||
tagAnimation="slide-up"
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "Cine", title: "Gran Retrospectiva de Arte Contemporáneo Abre en Museo", excerpt: "Una exposición sin precedentes presenta 200 obras de artistas contemporáneos de todo el mundo.", imageSrc: "http://img.b2bpic.net/free-photo/man-standing-stairs_400718-21.jpg", imageAlt: "art gallery museum exhibition contemporary", authorName: "Francisco Ruiz", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "23 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "2", category: "Cine", title: "Festival de Cine Independiente Presenta 150 Películas", excerpt: "El evento cultural más importante del año presenta lo mejor del cine independiente de toda la región.", imageSrc: "http://img.b2bpic.net/free-vector/movie-banner_1284-8008.jpg", imageAlt: "cinema film festival movie actor entertainment", authorName: "Andrés Peña", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "21 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "3", category: "Música", title: "Nuevo Álbum de Artista Internacional Rompe Récords de Descargas", excerpt: "El trabajo discográfico más esperado del año supera todas las expectativas en sus primeras 24 horas de lanzamiento.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-handball-players-holding-prize_23-2151155984.jpg?_wi=2", imageAlt: "music concert artist performance entertainment", authorName: "Gabriela Soto", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "20 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Literatura", title: "Premio Nacional de Literatura Reconoce Autores Prometedores", excerpt: "El jurado selecciona las obras más innovadoras y significativas de la literatura contemporánea nacional.", imageSrc: "http://img.b2bpic.net/free-photo/cinema-concept-with-reel-tickets_23-2147989027.jpg", imageAlt: "literature books writing author", authorName: "Luis Campos", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "19 Ene 2025"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="culture-coverage" data-section="culture-coverage">
|
||||
<SplitAbout
|
||||
title="Cobertura Especializada en Cultura"
|
||||
description="Explora críticas de arte, reseñas de espectáculos, perfiles de artistas y análisis de tendencias culturales."
|
||||
tag="Entretenimiento"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cinema-concept-with-reel-tickets_23-2147989027.jpg"
|
||||
imageAlt: "culture art entertainment exhibition"
|
||||
imagePosition="left"
|
||||
bulletPoints={[
|
||||
{ title: "Críticas Profesionales", description: "Expertos analizan obras de cine, teatro, música y artes visuales.", icon: MessageSquare },
|
||||
{ title: "Perfiles de Artistas", description: "Conoce las historias detrás de tus creadores favoritos.", icon: AlertCircle },
|
||||
{ title: "Tendencias Culturales", description: "Descubre qué está influyendo en el arte y el entretenimiento actual.", icon: Star },
|
||||
{ title: "Agenda Cultural", description: "Calendario completo de eventos, exposiciones y presentaciones.", icon: Clock }
|
||||
]}
|
||||
buttons={[{ text: "Leer Más", href: "/" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="NoticiasDigitales"
|
||||
leftLink={{ text: "Hecho por Iker y Claudia", href: "#" }}
|
||||
rightLink={{ text: "Política de Privacidad", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -5,7 +5,6 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import Link from 'next/link';
|
||||
import { Newspaper, AlertCircle, Star, Trophy, MapPin, Clock, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function SportsPage() {
|
||||
@@ -25,9 +24,12 @@ export default function SportsPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Contacto", id: "/contact" }
|
||||
{ name: "Tecnología", id: "/tecnologia" },
|
||||
{ name: "Política", id: "/politica" },
|
||||
{ name: "Cultura", id: "/cultura" },
|
||||
{ name: "Internacional", id: "/internacional" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
@@ -50,6 +52,9 @@ export default function SportsPage() {
|
||||
},
|
||||
{
|
||||
id: "3", category: "Baloncesto", title: "Equipo Local Asegura Pase a Semifinales", excerpt: "Con una actuación dominante, el equipo local consigue la victoria definitiva para avanzar en la competencia.", imageSrc: "http://img.b2bpic.net/free-photo/female-athlete_654080-1593.jpg?_wi=2", imageAlt: "sports athletes stadium competition game", authorName: "Patricia Gómez", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "21 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Tenis", title: "Campeón Defiende Título en Grand Slam", excerpt: "El tenista número uno del mundo mantiene su corona tras una final épica contra su rival histórico.", imageSrc: "http://img.b2bpic.net/free-photo/men-standing-starting-blocks-preparing_171337-7557.jpg?_wi=3", imageAlt: "tennis court match competition", authorName: "Miguel Fernández", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "20 Ene 2025"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -78,7 +83,7 @@ export default function SportsPage() {
|
||||
{ title: "Perfiles de Atletas", description: "Conoce la historia y logros de tus deportistas favoritos.", icon: Star },
|
||||
{ title: "Agenda de Eventos", description: "Calendario completo de próximos eventos y competiciones.", icon: Clock }
|
||||
]}
|
||||
buttons={[{ text: "Ver Calendario", href: "#" }]}
|
||||
buttons={[{ text: "Leer Más", href: "/" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -91,4 +96,4 @@ export default function SportsPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
99
src/app/internacional/page.tsx
Normal file
99
src/app/internacional/page.tsx
Normal file
@@ -0,0 +1,99 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Newspaper, AlertCircle, Star, Globe, MapPin, Clock, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function InternationalPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Tecnología", id: "/tecnologia" },
|
||||
{ name: "Política", id: "/politica" },
|
||||
{ name: "Cultura", id: "/cultura" },
|
||||
{ name: "Internacional", id: "/internacional" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="intl-featured" data-section="intl-featured">
|
||||
<BlogCardOne
|
||||
title="Internacional - Mundo Global"
|
||||
description="Noticias de todo el mundo, análisis geopolítico y eventos que impactan la escena internacional."
|
||||
tag="Internacional"
|
||||
tagIcon={Globe}
|
||||
tagAnimation="slide-up"
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "Clima", title: "Cumbres Internacionales Buscan Acuerdos sobre Clima", excerpt: "Líderes mundiales se reúnen para discutir estrategias conjuntas contra el cambio climático global.", imageSrc: "http://img.b2bpic.net/free-photo/overheating-planet-earth-global-warming-campaign-mixed-media_53876-104835.jpg", imageAlt: "climate environment global warming sustainability earth", authorName: "Diego Fernández", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "23 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "2", category: "Comercio", title: "Acuerdo Comercial Multinacional Beneficia a Economías", excerpt: "Cinco países firman un tratado de libre comercio que estimulará el crecimiento económico regional.", imageSrc: "http://img.b2bpic.net/free-photo/double-exposure-businessman-using-tablet-with-cityscape-financial-graph-blurred-buildi_1258-86778.jpg", imageAlt: "trade commerce business international economy", authorName: "Catalina Ruiz", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "20 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "3", category: "Diplomacia", title: "Misión Diplomática Busca Resolver Conflicto Regional", excerpt: "Embajadores de naciones cercanas se reúnen con mediadores internacionales para negociar paz.", imageSrc: "http://img.b2bpic.net/free-photo/working-board-presentation-business-office_1262-2226.jpg", imageAlt: "diplomacy international relations negotiation", authorName: "Javier Moreno", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "19 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Desarrollo", title: "Organismo Internacional Financia Proyectos de Sostenibilidad", excerpt: "Importantes inversiones se destinan a infraestructura verde y educación en países en desarrollo.", imageSrc: "http://img.b2bpic.net/free-vector/world-tourism-day-background-with-landmarks-transport_23-2148254689.jpg", imageAlt: "development sustainability global projects", authorName: "Marisa López", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "18 Ene 2025"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="intl-coverage" data-section="intl-coverage">
|
||||
<SplitAbout
|
||||
title="Cobertura Especializada en Asuntos Internacionales"
|
||||
description="Análisis de geopolítica, corresponsales en el extranjero y perspectivas sobre cómo el mundo está cambiando."
|
||||
tag="Global"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/world-tourism-day-background-with-landmarks-transport_23-2148254689.jpg"
|
||||
imageAlt: "international world global affairs"
|
||||
imagePosition="left"
|
||||
bulletPoints={[
|
||||
{ title: "Corresponsales Globales", description: "Reporteros en decenas de países cubriendo noticias locales.", icon: MessageSquare },
|
||||
{ title: "Análisis Geopolítico", description: "Expertos explican las tensiones y alianzas que moldean el mundo.", icon: AlertCircle },
|
||||
{ title: "Contexto Cultural", description: "Entender las diferencias culturales es clave para comprender la actualidad.", icon: Star },
|
||||
{ title: "Agenda Global", description: "Sigue conferencias internacionales y eventos de importancia mundial.", icon: Clock }
|
||||
]}
|
||||
buttons={[{ text: "Leer Más", href: "/" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="NoticiasDigitales"
|
||||
leftLink={{ text: "Hecho por Iker y Claudia", href: "#" }}
|
||||
rightLink={{ text: "Política de Privacidad", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "NoticiasDigitales - Noticias Actualizadas",
|
||||
description: "Tu fuente confiable de noticias en deportes, tecnología, política, cultura e internacional. Mantente informado con reportajes de calidad.",
|
||||
keywords: "noticias, periodismo, actualidad, reportajes, deportes, tecnología, política, cultura, internacional",
|
||||
openGraph: {
|
||||
title: "NoticiasDigitales",
|
||||
description: "Tu fuente confiable de noticias en deportes, tecnología, política, cultura e internacional.",
|
||||
url: "https://noticiasdigitales.com",
|
||||
siteName: "NoticiasDigitales",
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "NoticiasDigitales",
|
||||
description: "Noticias actualizadas y análisis profundo",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "NoticiasDigitales", description: "Tu fuente confiable de noticias de calidad"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="es">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -30,9 +30,12 @@ export default function HomePage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Contacto", id: "/contact" }
|
||||
{ name: "Tecnología", id: "/tecnologia" },
|
||||
{ name: "Política", id: "/politica" },
|
||||
{ name: "Cultura", id: "/cultura" },
|
||||
{ name: "Internacional", id: "/internacional" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "contact" }}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
/>
|
||||
</div>
|
||||
@@ -45,7 +48,7 @@ export default function HomePage() {
|
||||
tagIcon={Newspaper}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[{ text: "Leer Noticias", href: "#featured" }, { text: "Suscribirse", href: "contact" }]}
|
||||
buttons={[{ text: "Leer Noticias", href: "#featured" }, { text: "Suscribirse", href: "/contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
dashboard={{
|
||||
title: "Panel de Control Informativo", logoIcon: Newspaper,
|
||||
@@ -74,16 +77,16 @@ export default function HomePage() {
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
blogs={[
|
||||
{ id: "1", category: "Tecnología", title: "Nueva Inteligencia Artificial Revoluciona la Industria Tech", excerpt: "Descubre cómo esta innovadora tecnología de IA está transformando sectores completos de la economía digital.", imageSrc: "http://img.b2bpic.net/free-photo/workers-using-ai-computing-simulation_482257-75500.jpg", imageAlt: "artificial intelligence AI technology innovation future", authorName: "María García", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "25 Ene 2025" },
|
||||
{ id: "2", category: "Deportes", title: "Histórica Victoria en el Campeonato Internacional", excerpt: "El equipo nacional logra una remontada espectacular en la final del torneo internacional más prestigioso.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-handball-players-holding-prize_23-2151155984.jpg?_wi=1", imageAlt: "sports victory champion trophy celebration winning", authorName: "Carlos López", authorAvatar: "http://img.b2bpic.net/free-photo/dark-blonde-bearded-man-crosses-his-hands-chest-posing-black-shirt_8353-1116.jpg", date: "24 Ene 2025" },
|
||||
{ id: "3", category: "Política", title: "Nuevas Reformas Legislativas Aprobadas", excerpt: "El parlamento aprueba un paquete de reformas que buscan mejorar la transparencia y la participación ciudadana.", imageSrc: "http://img.b2bpic.net/free-photo/working-board-presentation-business-office_1262-2226.jpg", imageAlt: "politics reform government law parliament", authorName: "Elena Martínez", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "24 Ene 2025" },
|
||||
{ id: "4", category: "Cultura", title: "Gran Retrospectiva de Arte Contemporáneo Abre en Museo", excerpt: "Una exposición sin precedentes presenta 200 obras de artistas contemporáneos de todo el mundo.", imageSrc: "http://img.b2bpic.net/free-photo/man-standing-stairs_400718-21.jpg", imageAlt: "art gallery museum exhibition contemporary", authorName: "Francisco Ruiz", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "23 Ene 2025" },
|
||||
{ id: "5", category: "Internacional", title: "Cumbres Internacionales Buscan Acuerdos sobre Clima", excerpt: "Líderes mundiales se reúnen para discutir estrategias conjuntas contra el cambio climático global.", imageSrc: "http://img.b2bpic.net/free-photo/overheating-planet-earth-global-warming-campaign-mixed-media_53876-104835.jpg", imageAlt: "climate environment global warming sustainability earth", authorName: "Diego Fernández", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "23 Ene 2025" },
|
||||
{ id: "6", category: "Tecnología", title: "Smartphones de Nueva Generación Rompen Récords de Ventas", excerpt: "Los últimos modelos de smartphones establecen nuevos estándares en velocidad, cámara y duración de batería.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-person-using-smartphone-tablet-computer-table_1262-16950.jpg", imageAlt: "smartphone mobile technology gadget device", authorName: "Sandra Morales", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "22 Ene 2025" },
|
||||
{ id: "7", category: "Deportes", title: "Atleta Rompe Récord Mundial en Natación", excerpt: "Una nadadora establece un nuevo récord mundial en la competencia de 200 metros mariposa.", imageSrc: "http://img.b2bpic.net/free-photo/men-standing-starting-blocks-preparing_171337-7557.jpg?_wi=1", imageAlt: "swimming swimmer pool competition athlete", authorName: "Roberto Sánchez", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "22 Ene 2025" },
|
||||
{ id: "8", category: "Política", title: "Nuevas Elecciones Municipales Atraen Mayor Participación", excerpt: "Los ciudadanos acuden masivamente a las urnas en las elecciones municipales de este año.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-poll-card-close-up_23-2148265491.jpg", imageAlt: "elections voting ballot democracy politics", authorName: "Valentina López", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "21 Ene 2025" },
|
||||
{ id: "9", category: "Cultura", title: "Festival de Cine Independiente Presenta 150 Películas", excerpt: "El evento cultural más importante del año presenta lo mejor del cine independiente de toda la región.", imageSrc: "http://img.b2bpic.net/free-vector/movie-banner_1284-8008.jpg", imageAlt: "cinema film festival movie actor entertainment", authorName: "Andrés Peña", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "21 Ene 2025" },
|
||||
{ id: "10", category: "Internacional", title: "Acuerdo Comercial Multinacional Beneficia a Economías", excerpt: "Cinco países firman un tratado de libre comercio que estimulará el crecimiento económico regional.", imageSrc: "http://img.b2bpic.net/free-photo/double-exposure-businessman-using-tablet-with-cityscape-financial-graph-blurred-buildi_1258-86778.jpg", imageAlt: "trade commerce business international economy", authorName: "Catalina Ruiz", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "20 Ene 2025" }
|
||||
{ id: "1", category: "Tecnología", title: "Nueva Inteligencia Artificial Revoluciona la Industria Tech", excerpt: "Descubre cómo esta innovadora tecnología de IA está transformando sectores completos de la economía digital.", imageSrc: "http://img.b2bpic.net/free-photo/workers-using-ai-computing-simulation_482257-75500.jpg", imageAlt: "artificial intelligence AI technology innovation future", authorName: "María García", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "25 Ene 2025", onBlogClick: () => window.location.href = '/tecnologia' },
|
||||
{ id: "2", category: "Deportes", title: "Histórica Victoria en el Campeonato Internacional", excerpt: "El equipo nacional logra una remontada espectacular en la final del torneo internacional más prestigioso.", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-handball-players-holding-prize_23-2151155984.jpg?_wi=1", imageAlt: "sports victory champion trophy celebration winning", authorName: "Carlos López", authorAvatar: "http://img.b2bpic.net/free-photo/dark-blonde-bearded-man-crosses-his-hands-chest-posing-black-shirt_8353-1116.jpg", date: "24 Ene 2025", onBlogClick: () => window.location.href = '/deportes' },
|
||||
{ id: "3", category: "Política", title: "Nuevas Reformas Legislativas Aprobadas", excerpt: "El parlamento aprueba un paquete de reformas que buscan mejorar la transparencia y la participación ciudadana.", imageSrc: "http://img.b2bpic.net/free-photo/working-board-presentation-business-office_1262-2226.jpg", imageAlt: "politics reform government law parliament", authorName: "Elena Martínez", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "24 Ene 2025", onBlogClick: () => window.location.href = '/politica' },
|
||||
{ id: "4", category: "Cultura", title: "Gran Retrospectiva de Arte Contemporáneo Abre en Museo", excerpt: "Una exposición sin precedentes presenta 200 obras de artistas contemporáneos de todo el mundo.", imageSrc: "http://img.b2bpic.net/free-photo/man-standing-stairs_400718-21.jpg", imageAlt: "art gallery museum exhibition contemporary", authorName: "Francisco Ruiz", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "23 Ene 2025", onBlogClick: () => window.location.href = '/cultura' },
|
||||
{ id: "5", category: "Internacional", title: "Cumbres Internacionales Buscan Acuerdos sobre Clima", excerpt: "Líderes mundiales se reúnen para discutir estrategias conjuntas contra el cambio climático global.", imageSrc: "http://img.b2bpic.net/free-photo/overheating-planet-earth-global-warming-campaign-mixed-media_53876-104835.jpg", imageAlt: "climate environment global warming sustainability earth", authorName: "Diego Fernández", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "23 Ene 2025", onBlogClick: () => window.location.href = '/internacional' },
|
||||
{ id: "6", category: "Tecnología", title: "Smartphones de Nueva Generación Rompen Récords de Ventas", excerpt: "Los últimos modelos de smartphones establecen nuevos estándares en velocidad, cámara y duración de batería.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-person-using-smartphone-tablet-computer-table_1262-16950.jpg", imageAlt: "smartphone mobile technology gadget device", authorName: "Sandra Morales", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "22 Ene 2025", onBlogClick: () => window.location.href = '/tecnologia' },
|
||||
{ id: "7", category: "Deportes", title: "Atleta Rompe Récord Mundial en Natación", excerpt: "Una nadadora establece un nuevo récord mundial en la competencia de 200 metros mariposa.", imageSrc: "http://img.b2bpic.net/free-photo/men-standing-starting-blocks-preparing_171337-7557.jpg?_wi=1", imageAlt: "swimming swimmer pool competition athlete", authorName: "Roberto Sánchez", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "22 Ene 2025", onBlogClick: () => window.location.href = '/deportes' },
|
||||
{ id: "8", category: "Política", title: "Nuevas Elecciones Municipales Atraen Mayor Participación", excerpt: "Los ciudadanos acuden masivamente a las urnas en las elecciones municipales de este año.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-poll-card-close-up_23-2148265491.jpg", imageAlt: "elections voting ballot democracy politics", authorName: "Valentina López", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "21 Ene 2025", onBlogClick: () => window.location.href = '/politica' },
|
||||
{ id: "9", category: "Cultura", title: "Festival de Cine Independiente Presenta 150 Películas", excerpt: "El evento cultural más importante del año presenta lo mejor del cine independiente de toda la región.", imageSrc: "http://img.b2bpic.net/free-vector/movie-banner_1284-8008.jpg", imageAlt: "cinema film festival movie actor entertainment", authorName: "Andrés Peña", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "21 Ene 2025", onBlogClick: () => window.location.href = '/cultura' },
|
||||
{ id: "10", category: "Internacional", title: "Acuerdo Comercial Multinacional Beneficia a Economías", excerpt: "Cinco países firman un tratado de libre comercio que estimulará el crecimiento económico regional.", imageSrc: "http://img.b2bpic.net/free-photo/double-exposure-businessman-using-tablet-with-cityscape-financial-graph-blurred-buildi_1258-86778.jpg", imageAlt: "trade commerce business international economy", authorName: "Catalina Ruiz", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "20 Ene 2025", onBlogClick: () => window.location.href = '/internacional' }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -127,11 +130,11 @@ export default function HomePage() {
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{ id: "1", title: "Deportes - Cobertura Completa de Eventos", tags: ["Deportes", "En Vivo"], imageSrc: "http://img.b2bpic.net/free-photo/female-athlete_654080-1593.jpg?_wi=1", imageAlt: "Sección de Deportes" },
|
||||
{ id: "2", title: "Tecnología - Innovación y Futuro", tags: ["Tech", "Innovación"], imageSrc: "http://img.b2bpic.net/free-photo/laptop-data-center-facility-with-artificial-intelligence-simulation_482257-122221.jpg", imageAlt: "Sección de Tecnología" },
|
||||
{ id: "3", title: "Política - Análisis Político", tags: ["Política", "Análisis"], imageSrc: "http://img.b2bpic.net/free-photo/voting-rights-american-election_23-2151841503.jpg", imageAlt: "Sección de Política" },
|
||||
{ id: "4", title: "Cultura - Arte y Entretenimiento", tags: ["Cultura", "Entretenimiento"], imageSrc: "http://img.b2bpic.net/free-photo/cinema-concept-with-reel-tickets_23-2147989027.jpg", imageAlt: "Sección de Cultura" },
|
||||
{ id: "5", title: "Internacional - Mundo Global", tags: ["Internacional", "Global"], imageSrc: "http://img.b2bpic.net/free-vector/world-tourism-day-background-with-landmarks-transport_23-2148254689.jpg", imageAlt: "Sección de Internacional" }
|
||||
{ id: "1", title: "Deportes - Cobertura Completa de Eventos", tags: ["Deportes", "En Vivo"], imageSrc: "http://img.b2bpic.net/free-photo/female-athlete_654080-1593.jpg?_wi=1", imageAlt: "Sección de Deportes", onFeatureClick: () => window.location.href = '/deportes' },
|
||||
{ id: "2", title: "Tecnología - Innovación y Futuro", tags: ["Tech", "Innovación"], imageSrc: "http://img.b2bpic.net/free-photo/laptop-data-center-facility-with-artificial-intelligence-simulation_482257-122221.jpg", imageAlt: "Sección de Tecnología", onFeatureClick: () => window.location.href = '/tecnologia' },
|
||||
{ id: "3", title: "Política - Análisis Político", tags: ["Política", "Análisis"], imageSrc: "http://img.b2bpic.net/free-photo/voting-rights-american-election_23-2151841503.jpg", imageAlt: "Sección de Política", onFeatureClick: () => window.location.href = '/politica' },
|
||||
{ id: "4", title: "Cultura - Arte y Entretenimiento", tags: ["Cultura", "Entretenimiento"], imageSrc: "http://img.b2bpic.net/free-photo/cinema-concept-with-reel-tickets_23-2147989027.jpg", imageAlt: "Sección de Cultura", onFeatureClick: () => window.location.href = '/cultura' },
|
||||
{ id: "5", title: "Internacional - Mundo Global", tags: ["Internacional", "Global"], imageSrc: "http://img.b2bpic.net/free-vector/world-tourism-day-background-with-landmarks-transport_23-2148254689.jpg", imageAlt: "Sección de Internacional", onFeatureClick: () => window.location.href = '/internacional' }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -167,4 +170,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
99
src/app/politica/page.tsx
Normal file
99
src/app/politica/page.tsx
Normal file
@@ -0,0 +1,99 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Newspaper, AlertCircle, Star, Scale, MapPin, Clock, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function PoliticsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Tecnología", id: "/tecnologia" },
|
||||
{ name: "Política", id: "/politica" },
|
||||
{ name: "Cultura", id: "/cultura" },
|
||||
{ name: "Internacional", id: "/internacional" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="politics-featured" data-section="politics-featured">
|
||||
<BlogCardOne
|
||||
title="Política - Análisis Político"
|
||||
description="Noticias de política nacional e internacional, análisis de políticas públicas y decisiones que impactan la sociedad."
|
||||
tag="Política"
|
||||
tagIcon={Scale}
|
||||
tagAnimation="slide-up"
|
||||
blogs={[
|
||||
{
|
||||
id: "1", category: "Legislación", title: "Nuevas Reformas Legislativas Aprobadas", excerpt: "El parlamento aprueba un paquete de reformas que buscan mejorar la transparencia y la participación ciudadana.", imageSrc: "http://img.b2bpic.net/free-photo/working-board-presentation-business-office_1262-2226.jpg", imageAlt: "politics reform government law parliament", authorName: "Elena Martínez", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "24 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "2", category: "Elecciones", title: "Nuevas Elecciones Municipales Atraen Mayor Participación", excerpt: "Los ciudadanos acuden masivamente a las urnas en las elecciones municipales de este año.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-poll-card-close-up_23-2148265491.jpg", imageAlt: "elections voting ballot democracy politics", authorName: "Valentina López", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "21 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "3", category: "Política Nacional", title: "Gobierno Anuncia Nuevo Plan Económico para el Próximo Año", excerpt: "Las autoridades presentan un plan integral enfocado en crear empleos y atraer inversión extranjera.", imageSrc: "http://img.b2bpic.net/free-photo/voting-rights-american-election_23-2151841503.jpg", imageAlt: "government economy policy finance", authorName: "Roberto Silva", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "20 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Derechos", title: "Congreso Discute Nueva Ley de Derechos Fundamentales", excerpt: "Legisladores debaten una iniciativa que busca fortalecer la protección de derechos humanos en la constitución.", imageSrc: "http://img.b2bpic.net/free-photo/double-exposure-businessman-using-tablet-with-cityscape-financial-graph-blurred-buildi_1258-86778.jpg", imageAlt: "law rights justice democracy", authorName: "Adriana Gómez", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "19 Ene 2025"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
carouselMode="buttons"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="politics-coverage" data-section="politics-coverage">
|
||||
<SplitAbout
|
||||
title="Cobertura Especializada en Política"
|
||||
description="Análisis profundo de decisiones políticas, investigaciones de temas de interés público y perspectivas sobre gobernanza."
|
||||
tag="Análisis"
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/working-board-presentation-business-office_1262-2226.jpg"
|
||||
imageAlt: "politics governance parliament policy"
|
||||
imagePosition="left"
|
||||
bulletPoints={[
|
||||
{ title: "Análisis Profundo", description: "Examinamos las implicaciones de cada decisión política importante.", icon: MessageSquare },
|
||||
{ title: "Contexto Histórico", description: "Entendemos el pasado para interpretar mejor el presente político.", icon: AlertCircle },
|
||||
{ title: "Perspectivas Expertas", description: "Politólogos y analistas comparten sus interpretaciones especializadas.", icon: Star },
|
||||
{ title: "Calendario Político", description: "Mantente al tanto de votaciones, debates y elecciones próximas.", icon: Clock }
|
||||
]}
|
||||
buttons={[{ text: "Leer Más", href: "/" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="NoticiasDigitales"
|
||||
leftLink={{ text: "Hecho por Iker y Claudia", href: "#" }}
|
||||
rightLink={{ text: "Política de Privacidad", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -3,12 +3,11 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import Link from 'next/link';
|
||||
import { Newspaper, AlertCircle, Zap, Layers, Brain, Lightbulb } from 'lucide-react';
|
||||
import { Newspaper, AlertCircle, Star, Cpu, MapPin, Clock, MessageSquare } from 'lucide-react';
|
||||
|
||||
export default function TechPage() {
|
||||
export default function TechnologyPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -16,7 +15,7 @@ export default function TechPage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -25,12 +24,12 @@ export default function TechPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "home" },
|
||||
{ name: "Deportes", id: "sports" },
|
||||
{ name: "Tecnología", id: "tech" },
|
||||
{ name: "Política", id: "politics" },
|
||||
{ name: "Cultura", id: "culture" },
|
||||
{ name: "Internacional", id: "international" }
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Tecnología", id: "/tecnologia" },
|
||||
{ name: "Política", id: "/politica" },
|
||||
{ name: "Cultura", id: "/cultura" },
|
||||
{ name: "Internacional", id: "/internacional" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
@@ -40,43 +39,22 @@ export default function TechPage() {
|
||||
<div id="tech-featured" data-section="tech-featured">
|
||||
<BlogCardOne
|
||||
title="Tecnología - Innovación y Futuro"
|
||||
description="Las últimas novedades en el mundo de la tecnología. Descubre innovaciones, análisis de gadgets y tendencias digitales."
|
||||
tag="Tech"
|
||||
tagIcon={Zap}
|
||||
description="Descubre los últimos avances tecnológicos, tendencias de la industria y cómo la tecnología está transformando el mundo."
|
||||
tag="Tecnología"
|
||||
tagIcon={Cpu}
|
||||
tagAnimation="slide-up"
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
category: "Inteligencia Artificial",
|
||||
title: "Nueva Inteligencia Artificial Revoluciona la Industria Tech",
|
||||
excerpt: "Descubre cómo esta innovadora tecnología de IA está transformando sectores completos de la economía digital.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/workers-using-ai-computing-simulation_482257-75500.jpg?_wi=2",
|
||||
imageAlt: "artificial intelligence AI technology innovation future",
|
||||
authorName: "María García",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
date: "25 Ene 2025"
|
||||
id: "1", category: "IA", title: "Nueva Inteligencia Artificial Revoluciona la Industria Tech", excerpt: "Descubre cómo esta innovadora tecnología de IA está transformando sectores completos de la economía digital.", imageSrc: "http://img.b2bpic.net/free-photo/workers-using-ai-computing-simulation_482257-75500.jpg", imageAlt: "artificial intelligence AI technology innovation future", authorName: "María García", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "25 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
category: "Dispositivos",
|
||||
title: "Smartphones de Nueva Generación Rompen Récords de Ventas",
|
||||
excerpt: "Los últimos modelos de smartphones establecen nuevos estándares en velocidad, cámara y duración de batería.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-person-using-smartphone-tablet-computer-table_1262-16950.jpg?_wi=2",
|
||||
imageAlt: "smartphone mobile technology gadget device",
|
||||
authorName: "Sandra Morales",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg",
|
||||
date: "22 Ene 2025"
|
||||
id: "2", category: "Smartphones", title: "Smartphones de Nueva Generación Rompen Récords de Ventas", excerpt: "Los últimos modelos de smartphones establecen nuevos estándares en velocidad, cámara y duración de batería.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-person-using-smartphone-tablet-computer-table_1262-16950.jpg", imageAlt: "smartphone mobile technology gadget device", authorName: "Sandra Morales", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "22 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
category: "Ciberseguridad",
|
||||
title: "Nuevas Amenazas de Seguridad Requieren Mayor Vigilancia",
|
||||
excerpt: "Expertos advierten sobre nuevas vulnerabilidades y la necesidad de fortalecer medidas de protección digital.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laptop-data-center-facility-with-artificial-intelligence-simulation_482257-122221.jpg?_wi=2",
|
||||
imageAlt: "technology innovation tech digital computer",
|
||||
authorName: "Javier Torres",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg",
|
||||
date: "20 Ene 2025"
|
||||
id: "3", category: "Cloud Computing", title: "Nuevas Soluciones de Cloud Computing Democratizan la Tecnología", excerpt: "Las empresas pequeñas ahora pueden acceder a la infraestructura tecnológica de nivel empresarial a un costo accesible.", imageSrc: "http://img.b2bpic.net/free-photo/laptop-data-center-facility-with-artificial-intelligence-simulation_482257-122221.jpg", imageAlt: "cloud computing data center technology", authorName: "Carlos Rodríguez", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-reporter-preparing-interview_23-2149183573.jpg", date: "21 Ene 2025"
|
||||
},
|
||||
{
|
||||
id: "4", category: "Ciberseguridad", title: "Nuevas Amenazas de Ciberseguridad Requieren Medidas Preventivas", excerpt: "Los expertos advierten sobre nuevas tácticas de hackers y recomiendan fortalecer las defensas digitales.", imageSrc: "http://img.b2bpic.net/free-photo/double-exposure-businessman-using-tablet-with-cityscape-financial-graph-blurred-buildi_1258-86778.jpg", imageAlt: "cybersecurity protection data security", authorName: "Juan López", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-business-woman-office_1398-6.jpg", date: "20 Ene 2025"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -86,48 +64,36 @@ export default function TechPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="tech-trends" data-section="tech-trends">
|
||||
<FeatureCardTwentyThree
|
||||
title="Tendencias Tecnológicas"
|
||||
description="Las tendencias más importantes que están moldeando el futuro de la tecnología y la innovación digital."
|
||||
<div id="tech-coverage" data-section="tech-coverage">
|
||||
<SplitAbout
|
||||
title="Cobertura Especializada en Tecnología"
|
||||
description="Análisis profundo de las tendencias tecnológicas, entrevistas con líderes de la industria y proyecciones sobre el futuro digital."
|
||||
tag="Tendencias"
|
||||
tagIcon={Layers}
|
||||
tagIcon={MessageSquare}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Inteligencia Artificial y Machine Learning",
|
||||
tags: ["AI", "Innovación"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/workers-using-ai-computing-simulation_482257-75500.jpg?_wi=3",
|
||||
imageAlt: "artificial intelligence AI technology innovation future"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Computación Cuántica",
|
||||
tags: ["Cuántica", "Futuro"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/laptop-data-center-facility-with-artificial-intelligence-simulation_482257-122221.jpg?_wi=3",
|
||||
imageAlt: "technology innovation tech digital computer"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Internet de las Cosas (IoT)",
|
||||
tags: ["IoT", "Conectividad"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-person-using-smartphone-tablet-computer-table_1262-16950.jpg?_wi=3",
|
||||
imageAlt: "smartphone mobile technology gadget device"
|
||||
}
|
||||
mediaAnimation="opacity"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/laptop-data-center-facility-with-artificial-intelligence-simulation_482257-122221.jpg"
|
||||
imageAlt="technology innovation digital future"
|
||||
imagePosition="left"
|
||||
bulletPoints={[
|
||||
{ title: "Análisis de Innovación", description: "Evaluamos cada nuevo lanzamiento tecnológico con perspectiva crítica.", icon: MessageSquare },
|
||||
{ title: "Reportes de Industria", description: "Acceso a investigaciones completas sobre el sector tecnológico.", icon: AlertCircle },
|
||||
{ title: "Entrevistas Exclusivas", description: "Conversaciones con CEOs y emprendedores de startups innovadoras.", icon: Star },
|
||||
{ title: "Calendario Tech", description: "Sigue los próximos lanzamientos de productos y conferencias tecnológicas.", icon: Clock }
|
||||
]}
|
||||
buttons={[{ text: "Leer Más", href: "/" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="NoticiasDigitales"
|
||||
leftLink={{ text: "Creada por Iker y Claudia", href: "#" }}
|
||||
leftLink={{ text: "Hecho por Iker y Claudia", href: "#" }}
|
||||
rightLink={{ text: "Política de Privacidad", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user