diff --git a/src/app/page.tsx b/src/app/page.tsx index bf6b230..d5ecefb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplit from '@/components/sections/contact/ContactSplit'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; -import FooterCard from '@/components/sections/footer/FooterCard'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; @@ -28,18 +28,10 @@ export default function LandingPage() {
@@ -110,36 +66,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} features={[ - { - id: "1", - label: "Construction", - title: "General Construction", - items: [ - "Block walls", - "Cement work", - "Roofing solutions", - ], - }, - { - id: "2", - label: "Exterior", - title: "Landscaping & Fences", - items: [ - "Expert landscaping", - "Sturdy fencing", - "Property enhancement", - ], - }, - { - id: "3", - label: "Remodeling", - title: "Painting & Interior", - items: [ - "Interior painting", - "Exterior painting", - "Full finish", - ], - }, + { id: "1", label: "Construction", title: "General Construction", items: ["Block walls", "Cement work", "Roofing solutions"] }, + { id: "2", label: "Exterior", title: "Landscaping & Fences", items: ["Expert landscaping", "Sturdy fencing", "Property enhancement"] }, + { id: "3", label: "Remodeling", title: "Painting & Interior", items: ["Interior painting", "Exterior painting", "Full finish"] }, ]} title="Our Professional Services" description="Comprehensive landscaping and construction solutions." @@ -151,46 +80,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - title: "Great Work", - quote: "They built my block wall perfectly. Very professional.", - name: "John D.", - role: "Homeowner", - imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=1", - }, - { - id: "2", - title: "Excellent Service", - quote: "Professional painting job on my exterior house.", - name: "Maria G.", - role: "Homeowner", - imageSrc: "http://img.b2bpic.net/free-photo/we-must-make-modifications-this-project_329181-15105.jpg", - }, - { - id: "3", - title: "Best in Area", - quote: "Highly recommend for roofing and fencing work.", - name: "David L.", - role: "Homeowner", - imageSrc: "http://img.b2bpic.net/free-photo/architects-looking-plan-front-house_23-2147813100.jpg", - }, - { - id: "4", - title: "Reliable", - quote: "Very satisfied with their general construction service.", - name: "Sarah W.", - role: "Homeowner", - imageSrc: "http://img.b2bpic.net/free-photo/woman-inviting-man-house-with-tools_259150-58291.jpg", - }, - { - id: "5", - title: "Punctual and Clean", - quote: "They kept the site clean every single day. Great crew.", - name: "Robert B.", - role: "Homeowner", - imageSrc: "http://img.b2bpic.net/free-photo/workers-having-little-chat-while-having-cup-coffee_329181-15632.jpg?_wi=2", - }, + { id: "1", title: "Great Work", quote: "They built my block wall perfectly. Very professional.", name: "John D.", role: "Homeowner" }, + { id: "2", title: "Excellent Service", quote: "Professional painting job on my exterior house.", name: "Maria G.", role: "Homeowner" }, + { id: "3", title: "Best in Area", quote: "Highly recommend for roofing and fencing work.", name: "David L.", role: "Homeowner" }, ]} title="What Our Clients Say" description="See why homeowners trust PAIZ LOPEZ." @@ -198,25 +90,24 @@ export default function LandingPage() {