Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-03-14 20:59:43 +00:00

View File

@@ -7,6 +7,7 @@ import FeatureHoverPattern from '@/components/sections/feature/featureHoverPatte
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import MediaAbout from '@/components/sections/about/MediaAbout';
import TeamCardSix from '@/components/sections/team/TeamCardSix';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Award, BarChart3, Briefcase, Calendar, CheckCircle, Clock, Eye, Globe, MapPin, Share2, Sparkles, Star, Stethoscope, Target, TrendingUp, Users, Zap } from 'lucide-react';
@@ -15,6 +16,7 @@ const navItems = [
{ name: "Inicio", id: "hero" },
{ name: "Servicios", id: "services" },
{ name: "Beneficios", id: "benefits" },
{ name: "Equipo", id: "team" },
{ name: "Testimonios", id: "testimonials" },
{ name: "Sobre Nosotros", id: "about" },
{ name: "Contacto", id: "contact" }
@@ -148,6 +150,36 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardSix
title="Nuestro Equipo de Expertos"
description="Profesionales especializados en marketing digital para el sector médico. Con años de experiencia transformando consultorios en negocios prósperos."
tag="Equipo Dedicado"
tagIcon={Users}
tagAnimation="slide-up"
members={[
{
id: "1", name: "Juan Ramírez", role: "Especialista en Google Ads", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg", imageAlt: "Juan Ramírez"
},
{
id: "2", name: "Carolina López", role: "Especialista en Redes Sociales", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67053.jpg", imageAlt: "Carolina López"
},
{
id: "3", name: "Miguel Torres", role: "Diseñador Web y UX", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-nurse-with-stethoscope_23-2149308271.jpg", imageAlt: "Miguel Torres"
},
{
id: "4", name: "Ana Martínez", role: "Especialista en SEO Local", imageSrc: "http://img.b2bpic.net/free-photo/closeup-african-american-specialist-doctor-with-stethoscope-working-medical-treatment-hospital-office-practitioner-man-analyzing-pharmaceutical-prescription-report-healthcare-service_482257-28696.jpg", imageAlt: "Ana Martínez"
}
]}
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={true}
buttons={[{ text: "Conoce más sobre nosotros", href: "#about" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
title="Lo que dicen nuestros clientes"
@@ -251,8 +283,8 @@ export default function LandingPage() {
{
title: "Empresa", items: [
{ label: "Sobre Nosotros", href: "#about" },
{ label: "Nuestro Equipo", href: "#team" },
{ label: "Testimonios", href: "#testimonials" },
{ label: "Blog", href: "#" },
{ label: "Contacto", href: "#contact" }
]
},