From 4450d6c3827a845320929afb66e4b568c845f474 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 20:11:58 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 357 +++++++++++++++-------------------------------- 1 file changed, 110 insertions(+), 247 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index de22750..dfae19c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,284 +1,147 @@ "use client"; +import { ThemeProvider } from "@/components/providers/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Quote, Sparkles, Mail } from "lucide-react"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import ContactFaq from '@/components/sections/contact/ContactFaq'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Star, Shield, Heart, Activity, Microscope, CheckCircle, Clock, Users, Award, Zap, Building2, Stethoscope, MessageCircle } from 'lucide-react'; - -export default function LandingPage() { +export default function Home() { return ( - + -
- +
-
- -
- -
- + -
- -
- -
- -
-
-
- + ATENCIÓN IOMA 100%. Somos un centro acreditado para brindar servicios a pacientes con cobertura IOMA." - }, - { - id: "2", title: "¿Atienden PAMI, OSPIT y otros?", content: "Sí, atendemos PAMI, OSPIT y pacientes particulares. Contamos con múltiples coberturas para tu tranquilidad." - }, - { - id: "3", title: "¿Cómo pido turno?", content: "Podés pedir turno de las siguientes formas:\n
    \n
  • 📞 Llamando al 4654-2801
  • \n
  • 📲 Por WhatsApp al 11 4914-9441
  • \n
  • 📝 Completando nuestro formulario de contacto
  • \n
" - }, - { - id: "4", title: "¿Dónde están ubicados?", content: "Las Heras 16\nRamos Mejía – Provincia de Buenos Aires\n\nEstamos ubicados en la Zona Oeste, de fácil acceso desde toda la región." - }, - { - id: "5", title: "¿La atención es con turno?", content: "Sí, la atención es con turno previo. Esto nos permite garantizar que recibas la mejor calidad de atención personalizada." - } - ]} />
-
- +
- +
); -} \ No newline at end of file +} -- 2.49.1