Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
236
src/app/page.tsx
236
src/app/page.tsx
@@ -12,7 +12,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
|
|||||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||||
import { Award, Star, Zap } from "lucide-react";
|
import { Award, Star, Zap, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -33,25 +33,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Inicio",
|
name: "Inicio", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Nosotros",
|
name: "Nosotros", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Servicios",
|
name: "Servicios", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Equipo",
|
name: "Equipo", id: "team"},
|
||||||
id: "team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contacto",
|
name: "Contacto", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="DEM Dental"
|
brandName="DEM Dental"
|
||||||
/>
|
/>
|
||||||
@@ -60,41 +50,26 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Salud Dental y Especialidades de Vanguardia"
|
title="Salud Dental y Especialidades de Vanguardia"
|
||||||
description="En DEM Dental cuidamos tu sonrisa con tecnología avanzada y un trato humano excepcional. Expertos en odontología y especialidades médicas a tu servicio."
|
description="En DEM Dental cuidamos tu sonrisa con tecnología avanzada y un trato humano excepcional. Expertos en odontología y especialidades médicas a tu servicio."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/nurse-practitioner-posing-camera_482257-90415.jpg",
|
src: "http://img.b2bpic.net/free-photo/nurse-practitioner-posing-camera_482257-90415.jpg", alt: "Dentista"},
|
||||||
alt: "Dentista",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-handsome-bearded-dentist-male-glasses-wearing-blue-uniform-sitting-dentist-office-looking-camera_613910-18529.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-handsome-bearded-dentist-male-glasses-wearing-blue-uniform-sitting-dentist-office-looking-camera_613910-18529.jpg", alt: "Especialista"},
|
||||||
alt: "Especialista",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/happy-building-uniform-smiling-urban_1134-754.jpg",
|
src: "http://img.b2bpic.net/free-photo/happy-building-uniform-smiling-urban_1134-754.jpg", alt: "Cirujano"},
|
||||||
alt: "Cirujano",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/goodlooking-female-dentist-posing-white-coat-modern-wellequipped-cabinet_627829-9793.jpg",
|
src: "http://img.b2bpic.net/free-photo/goodlooking-female-dentist-posing-white-coat-modern-wellequipped-cabinet_627829-9793.jpg", alt: "Goodlooking female dentist posing in white coat in a modern wellequipped cabinet"},
|
||||||
alt: "Goodlooking female dentist posing in white coat in a modern wellequipped cabinet",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg",
|
src: "http://img.b2bpic.net/free-photo/equipment-dental-instruments-dentist-s-office-tools-close-up_8353-1677.jpg", alt: "Equipment and dental instruments in dentist's office. Tools close-up."},
|
||||||
alt: "Equipment and dental instruments in dentist's office. Tools close-up.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Agendar Cita",
|
text: "Agendar Cita", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Ver Servicios",
|
text: "Ver Servicios", href: "#features"},
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -107,17 +82,11 @@ export default function LandingPage() {
|
|||||||
description="DEM Dental y Especialidades Médicas nace con el propósito de elevar los estándares de atención médica. Combinamos equipos modernos con especialistas dedicados para brindarte soluciones integrales de salud bucal y bienestar general."
|
description="DEM Dental y Especialidades Médicas nace con el propósito de elevar los estándares de atención médica. Combinamos equipos modernos con especialistas dedicados para brindarte soluciones integrales de salud bucal y bienestar general."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Atención Personalizada",
|
title: "Atención Personalizada", description: "Escuchamos tus necesidades para darte el mejor tratamiento."},
|
||||||
description: "Escuchamos tus necesidades para darte el mejor tratamiento.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Tecnología de Punta",
|
title: "Tecnología de Punta", description: "Equipos de última generación para diagnósticos precisos."},
|
||||||
description: "Equipos de última generación para diagnósticos precisos.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Expertos Certificados",
|
title: "Expertos Certificados", description: "Médicos especialistas con años de trayectoria y éxito."},
|
||||||
description: "Médicos especialistas con años de trayectoria y éxito.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/smiling-doctor-portrait_23-2151997609.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/smiling-doctor-portrait_23-2151997609.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -130,28 +99,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Odontología Preventiva",
|
title: "Odontología Preventiva", description: "Limpiezas, revisiones y cuidado básico para mantener tu salud oral al día.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042926.jpg", buttonIcon: CheckCircle,
|
||||||
description: "Limpiezas, revisiones y cuidado básico para mantener tu salud oral al día.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-instruments_23-2151042926.jpg",
|
|
||||||
buttonIcon: "CheckCircle",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Ortodoncia Avanzada",
|
title: "Ortodoncia Avanzada", description: "Soluciones personalizadas para alinear tu sonrisa con comodidad y estilo.", imageSrc: "http://img.b2bpic.net/free-photo/dentist-examining-female-patient-with-teeth-shades_107420-73950.jpg", buttonIcon: CheckCircle,
|
||||||
description: "Soluciones personalizadas para alinear tu sonrisa con comodidad y estilo.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/dentist-examining-female-patient-with-teeth-shades_107420-73950.jpg",
|
|
||||||
buttonIcon: "CheckCircle",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Odontopediatría",
|
title: "Odontopediatría", description: "Especialistas en el cuidado dental de los más pequeños con máxima paciencia.", imageSrc: "http://img.b2bpic.net/free-photo/pediatric-dentist-little-girl-reception-dentist_1321-1717.jpg", buttonIcon: CheckCircle,
|
||||||
description: "Especialistas en el cuidado dental de los más pequeños con máxima paciencia.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pediatric-dentist-little-girl-reception-dentist_1321-1717.jpg",
|
|
||||||
buttonIcon: "CheckCircle",
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Cirugía Estética",
|
title: "Cirugía Estética", description: "Procedimientos quirúrgicos especializados para mejorar tu estética dental.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-using-instruments_23-2151053285.jpg", buttonIcon: CheckCircle,
|
||||||
description: "Procedimientos quirúrgicos especializados para mejorar tu estética dental.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-dentist-using-instruments_23-2151053285.jpg",
|
|
||||||
buttonIcon: "CheckCircle",
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Nuestras Especialidades"
|
title="Nuestras Especialidades"
|
||||||
@@ -166,23 +123,14 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "m1",
|
id: "m1", icon: Award,
|
||||||
icon: Award,
|
title: "Pacientes Satisfechos", value: "5000+"},
|
||||||
title: "Pacientes Satisfechos",
|
|
||||||
value: "5000+",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m2",
|
id: "m2", icon: Star,
|
||||||
icon: Star,
|
title: "Años de Experiencia", value: "15"},
|
||||||
title: "Años de Experiencia",
|
|
||||||
value: "15",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "m3",
|
id: "m3", icon: Zap,
|
||||||
icon: Zap,
|
title: "Procedimientos Exitosos", value: "8000+"},
|
||||||
title: "Procedimientos Exitosos",
|
|
||||||
value: "8000+",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Nuestra Trayectoria"
|
title="Nuestra Trayectoria"
|
||||||
description="Resultados que hablan por sí mismos."
|
description="Resultados que hablan por sí mismos."
|
||||||
@@ -197,35 +145,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
members={[
|
members={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Dra. Ana López", role: "Odontóloga General", imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-doctor-mask-yellow-wall_179666-20991.jpg"},
|
||||||
name: "Dra. Ana López",
|
|
||||||
role: "Odontóloga General",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-female-doctor-mask-yellow-wall_179666-20991.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Dr. Carlos Ruiz", role: "Ortodoncista", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-slavic-girl-doctor-uniform-with-stethoscope-isolated-orange-wall-with-copy-space_141793-122023.jpg"},
|
||||||
name: "Dr. Carlos Ruiz",
|
|
||||||
role: "Ortodoncista",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-slavic-girl-doctor-uniform-with-stethoscope-isolated-orange-wall-with-copy-space_141793-122023.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Dra. Elena García", role: "Cirujana Oral", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-mask-dentistry-concept-dental-treatment_169016-67127.jpg"},
|
||||||
name: "Dra. Elena García",
|
|
||||||
role: "Cirujana Oral",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-mask-dentistry-concept-dental-treatment_169016-67127.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Lic. María Silva", role: "Higiene Oral", imageSrc: "http://img.b2bpic.net/free-photo/side-view-nurses-working-together_52683-98096.jpg"},
|
||||||
name: "Lic. María Silva",
|
|
||||||
role: "Higiene Oral",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-nurses-working-together_52683-98096.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Dr. Jorge Rivas", role: "Endodoncista", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-dentist-wearing-blue-uniform-standing-dentist-clinic_613910-18496.jpg"},
|
||||||
name: "Dr. Jorge Rivas",
|
|
||||||
role: "Endodoncista",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-dentist-wearing-blue-uniform-standing-dentist-clinic_613910-18496.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Conoce a tu equipo médico"
|
title="Conoce a tu equipo médico"
|
||||||
description="Profesionales apasionados por tu bienestar y salud integral."
|
description="Profesionales apasionados por tu bienestar y salud integral."
|
||||||
@@ -238,45 +166,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Excelente servicio", quote: "La atención fue impecable desde el primer minuto. Totalmente recomendable.", name: "Juan Pérez", role: "Paciente", imageSrc: "http://img.b2bpic.net/free-photo/big-happiness-beautiful-woman_329181-1147.jpg"},
|
||||||
title: "Excelente servicio",
|
|
||||||
quote: "La atención fue impecable desde el primer minuto. Totalmente recomendable.",
|
|
||||||
name: "Juan Pérez",
|
|
||||||
role: "Paciente",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/big-happiness-beautiful-woman_329181-1147.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Gran profesionalismo", quote: "Los doctores son muy atentos y explican todo detalladamente. Muy conforme.", name: "Laura Méndez", role: "Paciente", imageSrc: "http://img.b2bpic.net/free-photo/young-man-with-dental-braces-dentist-office-sitting-dentist-chair_651396-2256.jpg"},
|
||||||
title: "Gran profesionalismo",
|
|
||||||
quote: "Los doctores son muy atentos y explican todo detalladamente. Muy conforme.",
|
|
||||||
name: "Laura Méndez",
|
|
||||||
role: "Paciente",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-man-with-dental-braces-dentist-office-sitting-dentist-chair_651396-2256.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Resultados increíbles", quote: "Mi sonrisa cambió por completo gracias a ellos. Grandes especialistas.", name: "Sofía Díaz", role: "Paciente", imageSrc: "http://img.b2bpic.net/free-photo/positive-bearded-male-doctor-smiling-points-away-space-text-white-background-attractive-intern-wearing-uniform-looking-confident-isolated_574295-6094.jpg"},
|
||||||
title: "Resultados increíbles",
|
|
||||||
quote: "Mi sonrisa cambió por completo gracias a ellos. Grandes especialistas.",
|
|
||||||
name: "Sofía Díaz",
|
|
||||||
role: "Paciente",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-bearded-male-doctor-smiling-points-away-space-text-white-background-attractive-intern-wearing-uniform-looking-confident-isolated_574295-6094.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", title: "Atención humana", quote: "Me hicieron sentir muy cómodo. Es difícil encontrar lugares así.", name: "Roberto Gómez", role: "Paciente", imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-doctor-his-female-patient-shaking-hands-after-medical-appointment-clinic_637285-421.jpg"},
|
||||||
title: "Atención humana",
|
|
||||||
quote: "Me hicieron sentir muy cómodo. Es difícil encontrar lugares así.",
|
|
||||||
name: "Roberto Gómez",
|
|
||||||
role: "Paciente",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-doctor-his-female-patient-shaking-hands-after-medical-appointment-clinic_637285-421.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", title: "Volveré sin duda", quote: "Excelente equipo, instalaciones muy limpias y modernas. Excelente servicio.", name: "Lucía Torres", role: "Paciente", imageSrc: "http://img.b2bpic.net/free-photo/brunette-blogger-doing-her-make-up_23-2148192399.jpg"},
|
||||||
title: "Volveré sin duda",
|
|
||||||
quote: "Excelente equipo, instalaciones muy limpias y modernas. Excelente servicio.",
|
|
||||||
name: "Lucía Torres",
|
|
||||||
role: "Paciente",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/brunette-blogger-doing-her-make-up_23-2148192399.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Lo que dicen nuestros pacientes"
|
title="Lo que dicen nuestros pacientes"
|
||||||
description="La confianza de nuestros pacientes es nuestra mejor carta de presentación."
|
description="La confianza de nuestros pacientes es nuestra mejor carta de presentación."
|
||||||
@@ -288,25 +186,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", title: "¿Cuáles son los horarios de atención?", content: "Atendemos de lunes a sábado de 9:00 AM a 7:00 PM."},
|
||||||
title: "¿Cuáles son los horarios de atención?",
|
|
||||||
content: "Atendemos de lunes a sábado de 9:00 AM a 7:00 PM.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", title: "¿Aceptan seguros médicos?", content: "Sí, contamos con convenios con las principales aseguradoras."},
|
||||||
title: "¿Aceptan seguros médicos?",
|
|
||||||
content: "Sí, contamos con convenios con las principales aseguradoras.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", title: "¿Es necesario agendar cita?", content: "Sí, recomendamos agendar con antelación para brindarte una atención preferente."},
|
||||||
title: "¿Es necesario agendar cita?",
|
|
||||||
content: "Sí, recomendamos agendar con antelación para brindarte una atención preferente.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "f4",
|
id: "f4", title: "¿Realizan urgencias?", content: "Atendemos urgencias dentales bajo previa evaluación telefónica."},
|
||||||
title: "¿Realizan urgencias?",
|
|
||||||
content: "Atendemos urgencias dentales bajo previa evaluación telefónica.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
sideTitle="Preguntas Frecuentes"
|
sideTitle="Preguntas Frecuentes"
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
@@ -317,8 +203,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Contacto"
|
tag="Contacto"
|
||||||
title="Agenda tu consulta hoy"
|
title="Agenda tu consulta hoy"
|
||||||
description="Estamos listos para cuidar tu salud. Escríbenos y nuestro equipo te contactará pronto."
|
description="Estamos listos para cuidar tu salud. Escríbenos y nuestro equipo te contactará pronto."
|
||||||
@@ -330,46 +215,29 @@ export default function LandingPage() {
|
|||||||
<FooterBase
|
<FooterBase
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Servicios",
|
title: "Servicios", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Odontología",
|
label: "Odontología", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Ortodoncia",
|
label: "Ortodoncia", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Estética",
|
label: "Estética", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Nosotros",
|
title: "Nosotros", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Equipo",
|
label: "Equipo", href: "#team"},
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Testimonios",
|
label: "Testimonios", href: "#testimonial"},
|
||||||
href: "#testimonial",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Aviso de Privacidad",
|
label: "Aviso de Privacidad", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Términos",
|
label: "Términos", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user