Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e2e3173910 | |||
| 49bd5d8e9e | |||
| 1299523cf3 | |||
| 30af70b338 |
@@ -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" }
|
||||
@@ -63,19 +65,19 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
name: "Dra. María González", handle: "Dermatóloga", testimonial: "Aumentamos nuestro flujo de pacientes en 85% en solo 6 meses. El equipo fue extraordinario.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-nurse-with-stethoscope_23-2149308271.jpg", imageAlt: "Dra. María González"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-nurse-with-stethoscope_23-2149308271.jpg?_wi=1", imageAlt: "Dra. María González"
|
||||
},
|
||||
{
|
||||
name: "Dr. Carlos Mendez", handle: "Cardiólogo", testimonial: "La estrategia de Google Maps nos posicionó como referencia en la ciudad. Totalmente recomendado.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg", imageAlt: "Dr. Carlos Mendez"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-doctor-wearing-coat_23-2148816198.jpg?_wi=1", imageAlt: "Dr. Carlos Mendez"
|
||||
},
|
||||
{
|
||||
name: "Dra. Ana Rodríguez", handle: "Odontóloga", testimonial: "El sistema de reservas online redujo nuestro trabajo administrativo a la mitad. Excelente resultado.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67053.jpg", imageAlt: "Dra. Ana Rodríguez"
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-female-dentist-dentistry-concept-dental-treatment_169016-67053.jpg?_wi=1", imageAlt: "Dra. Ana Rodríguez"
|
||||
},
|
||||
{
|
||||
name: "Dr. Roberto Silva", handle: "Oftalmólogo", testimonial: "Las redes sociales de MediMarket Pro humanizaron mi consulta. Los pacientes se sienten más conectados.", rating: 5,
|
||||
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: "Dr. Roberto Silva"
|
||||
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?_wi=1", imageAlt: "Dr. Roberto Silva"
|
||||
}
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
@@ -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?_wi=2", 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?_wi=2", 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?_wi=2", 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?_wi=2", 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"
|
||||
@@ -185,7 +217,7 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
title="Sobre MediMarket Pro"
|
||||
description="Somos un equipo especializado en marketing digital para profesionales de la salud. Con más de 8 años de experiencia, hemos ayudado a más de 500 médicos, dentistas y clínicas a transformar su práctica. Entendemos los desafíos únicos de un consultorio médico y creamos estrategias personalizadas que generan resultados reales."
|
||||
description="Somos un equipo especializado en marketing digital para profesionales de la salud. Con más de 2 años de experiencia, hemos ayudado a más de 50 médicos, dentistas y clínicas a transformar su práctica. Entendemos los desafíos únicos de un consultorio médico y creamos estrategias personalizadas que generan resultados reales."
|
||||
tag="Expertos en Marketing Médico"
|
||||
tagIcon={Award}
|
||||
tagAnimation="slide-up"
|
||||
@@ -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" }
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user