diff --git a/src/app/page.tsx b/src/app/page.tsx index 2a5d284..99d5d8c 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 ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroOverlay from '@/components/sections/hero/HeroOverlay'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import { ShieldCheck, Mail, FileText, Phone } from "lucide-react"; export default function LandingPage() { return ( @@ -29,22 +30,10 @@ export default function LandingPage() {
@@ -156,30 +86,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} metrics={[ - { - id: "m1", - value: "+10", - title: "Años", - description: "Experiencia en el sector", - imageSrc: "http://img.b2bpic.net/free-photo/vertical-low-angle-shot-ceiling-cool-house-with-modern-minimalistic-interior_181624-6635.jpg", - }, - { - id: "m2", - value: "+2000", - title: "Toneladas", - description: "Amianto retirado", - imageSrc: "http://img.b2bpic.net/free-photo/steel-pipelines-cables-factory-interior-as-nuclear-industry-background-concept_645730-823.jpg", - }, - { - id: "m3", - value: "+100", - title: "Clientes", - description: "Satisfechos en Catalunya", - imageSrc: "http://img.b2bpic.net/free-photo/man-collecting-scattered-plastic-bottles-from-ground_1268-20053.jpg", - }, + { id: "m1", value: "+10", title: "Años", description: "Experiencia en el sector", imageSrc: "http://img.b2bpic.net/free-photo/vertical-low-angle-shot-ceiling-cool-house-with-modern-minimalistic-interior_181624-6635.jpg" }, + { id: "m2", value: "+2000", title: "Toneladas", description: "Amianto retirado", imageSrc: "http://img.b2bpic.net/free-photo/steel-pipelines-cables-factory-interior-as-nuclear-industry-background-concept_645730-823.jpg" } ]} title="Nuestra Experiencia" - description="Resultados demostrables con años de trayectoria." + description="Resultados demostrables con años de trayectoria industrial." /> @@ -189,41 +100,8 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} testimonials={[ - { - id: "t1", - name: "Jordi M.", - handle: "Comunidad", - testimonial: "Profesionales y rápidos. Nos dieron toda la documentación legal al instante.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-male-engineer-throws-air-plane-wears-protective-headgear-formal-suit-has-aim-develop-his-innovative-project_273609-31213.jpg", - }, - { - id: "t2", - name: "Maria C.", - handle: "Particulares", - testimonial: "Un trabajo impecable y sin complicaciones. Muy agradecidos.", - imageSrc: "http://img.b2bpic.net/free-photo/man-looking-camera-his-office_23-2148242891.jpg", - }, - { - id: "t3", - name: "Pere L.", - handle: "Empresa", - testimonial: "La mejor gestión integral de residuos que he contratado nunca.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-male-entrepreneur-reading-email-laptop-while-working-office_637285-6756.jpg", - }, - { - id: "t4", - name: "Elena R.", - handle: "Administración", - testimonial: "Seguridad ante todo. Gran equipo humano y técnico.", - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-business-man-greeting-colleague_74855-1519.jpg", - }, - { - id: "t5", - name: "Marc F.", - handle: "Industrial", - testimonial: "Cumplimiento de plazos excelente. Totalmente recomendados.", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-engineer-building-protective-helmet-gray-wall-serious-focused-face_343596-6764.jpg", - }, + { id: "t1", name: "Jordi M.", handle: "Comunidad", testimonial: "Profesionales y rápidos. Nos dieron toda la documentación legal al instante.", imageSrc: "http://img.b2bpic.net/free-photo/happy-young-male-engineer-throws-air-plane-wears-protective-headgear-formal-suit-has-aim-develop-his-innovative-project_273609-31213.jpg" }, + { id: "t2", name: "Maria C.", handle: "Particulares", testimonial: "Un trabajo impecable y sin complicaciones. Muy agradecidos.", imageSrc: "http://img.b2bpic.net/free-photo/man-looking-camera-his-office_23-2148242891.jpg" } ]} title="Opiniones de Clientes" description="Confianza y seguridad para su comunidad o empresa." @@ -231,62 +109,29 @@ export default function LandingPage() {