diff --git a/src/app/page.tsx b/src/app/page.tsx index 245688c..fb8454b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,14 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { MapPin, Clock, Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -29,22 +30,10 @@ export default function LandingPage() { @@ -174,39 +63,11 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - title: "Bicicletas Premium", - description: "Specialized, Kross y otras marcas de clase mundial.", - imageSrc: "http://img.b2bpic.net/free-vector/cycle-sports-logo-template-bicycle-illustration-modern-design-vector_53876-151342.jpg", - }, - { - title: "Taller Profesional", - description: "Mecánicos certificados expertos en alto rendimiento.", - imageSrc: "http://img.b2bpic.net/free-vector/bike-icon-with-colorful-wheels_1025-215.jpg", - }, - { - title: "Equipo Pro", - description: "Accesorios esenciales para tu seguridad y comodidad.", - imageSrc: "http://img.b2bpic.net/free-vector/sacred-blade-poster_1017-2715.jpg", - }, - { - title: "Nutrición", - description: "Suplementos para rendimiento dentro y fuera de la bici.", - imageSrc: "http://img.b2bpic.net/free-vector/pack-four-bikes-flat-design_23-2147675657.jpg", - }, - { - title: "Facilidades de Pago", - description: "Múltiples métodos para que no pares de rodar.", - imageSrc: "http://img.b2bpic.net/free-vector/icons-about-bicycle_1172-117.jpg", - }, - { - title: "Atención Personalizada", - description: "Orientación experta desde el primer momento.", - imageSrc: "http://img.b2bpic.net/free-photo/urban-transport-concept-with-bicycle_23-2148996410.jpg", - }, + { title: "Bicicletas Premium", description: "Specialized, Kross y más.", imageSrc: "http://img.b2bpic.net/free-vector/cycle-sports-logo-template-bicycle-illustration-modern-design-vector_53876-151342.jpg" }, + { title: "Taller Profesional", description: "Expertos en mantenimiento.", imageSrc: "http://img.b2bpic.net/free-vector/bike-icon-with-colorful-wheels_1025-215.jpg" }, + { title: "Equipo Pro", description: "Seguridad y comodidad.", imageSrc: "http://img.b2bpic.net/free-vector/sacred-blade-poster_1017-2715.jpg" } ]} title="Lo que ofrecemos" - description="Servicios integrales para mantenerte rodando al máximo nivel." /> @@ -215,132 +76,46 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - testimonials={[ - { - id: "1", - name: "Jaxsun", - handle: "Cliente", - testimonial: "Fui para un bike fit. Extremadamente profesionales.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-man-t-shirt-jeans-holding-bmx-isolated-dark-background_613910-1181.jpg", - }, - { - id: "2", - name: "Al Nevis", - handle: "Cliente", - testimonial: "Servicio y atención profesional, gran variedad de MTB.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-cyclist-catching-his-breath_329181-8667.jpg", - }, - { - id: "3", - name: "Alvin Campos", - handle: "Cliente", - testimonial: "La tienda es bien surtida y un muy buen trato.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/outdoor-shot-young-good-looking-male-photographer-standing-harbour-looking-how-sunset-reflects-sea-waves-dreaming-making-up-idea-taking-photo-beautiful-scenery-with-camera_176420-5098.jpg", - }, - { - id: "4", - name: "Jose Edwin Ferrer", - handle: "Cliente", - testimonial: "Excelente trato de su dueño y empleados.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-fitness-girl-stylish-sportswear-with-skipping-rope-dreamily-tranining-city-stadium_574295-2798.jpg", - }, - { - id: "5", - name: "Pedro Morales", - handle: "Cliente", - testimonial: "Tenían todo lo que buscaba y el personal es súper atento.", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/alone-man-walking-mountains-early-autumn_651396-1956.jpg", - }, - ]} + testimonials={[]} showRating={true} - title="Testimonios de la Comunidad" - description="Experiencias reales en Bike Center PR." + title="Testimonios" />
- -
- -
- + +
+ +
); -} +} \ No newline at end of file diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 38cd8a1..6200e74 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-lato), sans-serif; + font-family: var(--font-barlow-condensed), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-lato), sans-serif; + font-family: var(--font-barlow-condensed), sans-serif; }