Merge version_1 into main #3
@@ -16,7 +16,7 @@ export default function SportsPage() {
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -25,12 +25,9 @@ export default function SportsPage() {
|
||||
<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: "Inicio", id: "/" },
|
||||
{ name: "Deportes", id: "/deportes" },
|
||||
{ name: "Contacto", id: "/contact" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
|
||||
245
src/app/page.tsx
245
src/app/page.tsx
@@ -9,33 +9,30 @@ import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwe
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import Link from 'next/link';
|
||||
import { Newspaper, AlertCircle, Star, Clock, MapPin, Brain, CheckCircle, Zap, Trophy, Layers, MessageSquare, Home, Settings } from 'lucide-react';
|
||||
import { Newspaper, Star, AlertCircle, Clock, MapPin, Brain, CheckCircle, Zap, Trophy, Layers, MessageSquare, Home, Settings } from 'lucide-react';
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="semibold"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<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: "Contacto", id: "/contact" }
|
||||
]}
|
||||
button={{ text: "Suscribirse", href: "/contact" }}
|
||||
button={{ text: "Suscribirse", href: "contact" }}
|
||||
brandName="NoticiasDigitales"
|
||||
/>
|
||||
</div>
|
||||
@@ -47,41 +44,20 @@ export default function HomePage() {
|
||||
tag="Últimas Noticias"
|
||||
tagIcon={Newspaper}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "floatingGradient" }}
|
||||
buttons={[
|
||||
{ text: "Leer Noticias", href: "#featured" },
|
||||
{ text: "Suscribirse", href: "/contact" }
|
||||
]}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
buttons={[{ text: "Leer Noticias", href: "#featured" }, { text: "Suscribirse", href: "contact" }]}
|
||||
buttonAnimation="slide-up"
|
||||
dashboard={{
|
||||
title: "Panel de Control Informativo",
|
||||
logoIcon: Newspaper,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg?_wi=1",
|
||||
searchPlaceholder: "Buscar noticias...",
|
||||
buttons: [
|
||||
{ text: "Ver Más", href: "#featured" },
|
||||
{ text: "Compartir", href: "#" }
|
||||
],
|
||||
sidebarItems: [
|
||||
{ icon: Home, active: true },
|
||||
{ icon: Zap },
|
||||
{ icon: Settings }
|
||||
],
|
||||
title: "Panel de Control Informativo", logoIcon: Newspaper,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/digital-tablet-online-learning_53876-97299.jpg", imageAlt: "news dashboard interface digital analytics", searchPlaceholder: "Buscar noticias...", buttons: [{ text: "Ver Más", href: "#featured" }, { text: "Compartir", href: "#" }],
|
||||
sidebarItems: [{ icon: Home, active: true }, { icon: Zap }, { icon: Settings }],
|
||||
stats: [
|
||||
{ title: "Noticias Hoy", values: [42, 58, 73], description: "Artículos publicados" },
|
||||
{ title: "Lectores Activos", values: [15240, 18650, 22340], description: "Usuarios en línea" },
|
||||
{ title: "Secciones", values: [6, 6, 6], description: "Categorías de contenido" }
|
||||
],
|
||||
chartTitle: "Tendencia de Lecturas",
|
||||
chartData: [
|
||||
{ value: 45 },
|
||||
{ value: 62 },
|
||||
{ value: 55 },
|
||||
{ value: 78 },
|
||||
{ value: 88 }
|
||||
],
|
||||
listTitle: "Noticias de Última Hora",
|
||||
listItems: [
|
||||
chartTitle: "Tendencia de Lecturas", chartData: [{ value: 45 }, { value: 62 }, { value: 55 }, { value: 78 }, { value: 88 }],
|
||||
listTitle: "Noticias de Última Hora", listItems: [
|
||||
{ icon: AlertCircle, title: "Evento importante en política", status: "Hace 5 min" },
|
||||
{ icon: Zap, title: "Nuevo avance tecnológico", status: "Hace 15 min" },
|
||||
{ icon: Trophy, title: "Resultado del partido", status: "Hace 30 min" }
|
||||
@@ -98,72 +74,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?_wi=1",
|
||||
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?_wi=1",
|
||||
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: "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", 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", 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" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -202,45 +122,16 @@ export default function HomePage() {
|
||||
description="Explora todas nuestras categorías de noticias con contenido especializado y de calidad."
|
||||
tag="Categorías"
|
||||
tagIcon={Layers}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
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: "sports athletes stadium competition game"
|
||||
},
|
||||
{
|
||||
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?_wi=1",
|
||||
imageAlt: "technology innovation tech digital computer"
|
||||
},
|
||||
{
|
||||
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: "politics government parliament election debate"
|
||||
},
|
||||
{
|
||||
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: "culture art cinema music entertainment"
|
||||
},
|
||||
{
|
||||
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: "international world global countries travel"
|
||||
}
|
||||
{ id: "1", title: "Deportes - Cobertura Completa de Eventos", tags: ["Deportes", "En Vivo"], imageSrc: "http://img.b2bpic.net/free-photo/female-athlete_654080-1593.jpg", 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" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -257,60 +148,12 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Juan Rodríguez",
|
||||
role: "Lector Regular",
|
||||
company: "Madrid, España",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=1",
|
||||
imageAlt: "portrait professional man person avatar"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Laura Martínez",
|
||||
role: "Periodista",
|
||||
company: "Barcelona, España",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=1",
|
||||
imageAlt: "portrait professional woman person avatar"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Carlos Mendez",
|
||||
role: "Empresario",
|
||||
company: "Valencia, España",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=2",
|
||||
imageAlt: "portrait professional man person avatar"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "María González",
|
||||
role: "Estudiante",
|
||||
company: "Sevilla, España",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=2",
|
||||
imageAlt: "portrait professional woman person avatar"
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Antonio Ruiz",
|
||||
role: "Académico",
|
||||
company: "Bilbao, España",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg?_wi=3",
|
||||
imageAlt: "portrait professional man person avatar"
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Isabel López",
|
||||
role: "Lectora Premium",
|
||||
company: "Zaragoza, España",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg?_wi=3",
|
||||
imageAlt: "portrait professional woman person avatar"
|
||||
}
|
||||
{ id: "1", name: "Juan Rodríguez", role: "Lector Regular", company: "Madrid, España", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg", imageAlt: "portrait professional man person avatar" },
|
||||
{ id: "2", name: "Laura Martínez", role: "Periodista", company: "Barcelona, España", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "portrait professional woman person avatar" },
|
||||
{ id: "3", name: "Carlos Mendez", role: "Empresario", company: "Valencia, España", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg", imageAlt: "portrait professional man person avatar" },
|
||||
{ id: "4", name: "María González", role: "Estudiante", company: "Sevilla, España", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "portrait professional woman person avatar" },
|
||||
{ id: "5", name: "Antonio Ruiz", role: "Académico", company: "Bilbao, España", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pensive-person-alone-corridor-serious_1262-1042.jpg", imageAlt: "portrait professional man person avatar" },
|
||||
{ id: "6", name: "Isabel López", role: "Lectora Premium", company: "Zaragoza, España", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businesswoman-wearing-formal-suit-standing-with-arms-folded_74855-10328.jpg", imageAlt: "portrait professional woman person avatar" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user