diff --git a/src/app/page.tsx b/src/app/page.tsx index 2764cea..17852eb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,15 +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 FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroLogo from '@/components/sections/hero/HeroLogo'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TextAbout from '@/components/sections/about/TextAbout'; export default function LandingPage() { @@ -68,12 +68,9 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} features={[ - { - title: "Eco-Friendly Products", description: "Safe for children and pets.", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-house-chores-with-vacuum_23-2148394963.jpg", imageAlt: "Safe cleaning"}, - { - title: "Professional Team", description: "Highly trained and verified staff.", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150359035.jpg", imageAlt: "Team"}, - { - title: "Advanced Technology", description: "Steam cleaning and industrial vacuums.", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358992.jpg", imageAlt: "Gear"}, + { title: "Eco-Friendly Products", description: "Safe for children and pets.", imageSrc: "http://img.b2bpic.net/free-photo/woman-doing-house-chores-with-vacuum_23-2148394963.jpg" }, + { title: "Professional Team", description: "Highly trained and verified staff.", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150359035.jpg" }, + { title: "Advanced Technology", description: "Steam cleaning and industrial vacuums.", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-professional-home-cleaning-service_23-2150358992.jpg" }, ]} title="Our Specialized Focus" description="We use eco-friendly chemicals and professional-grade machinery for every task." @@ -105,18 +102,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} plans={[ - { - id: "basic", name: "Essential Clean", price: "₹2,500", features: ["Room dusting", "Floor mopping"], - buttons: [{ text: "Select Plan" }], - }, - { - id: "pro", name: "Premium Deep", price: "₹4,900", features: ["Full kitchen deep", "Bathroom deep", "Window cleaning"], - buttons: [{ text: "Select Plan" }], - }, - { - id: "enterprise", name: "Office Full", price: "₹8,900", features: ["Total facility clean", "Sanitization", "Workstation care"], - buttons: [{ text: "Select Plan" }], - }, + { id: "basic", name: "Essential Clean", price: "₹2,500", features: ["Room dusting", "Floor mopping"], buttons: [{ text: "Select Plan" }] }, + { id: "pro", name: "Premium Deep", price: "₹4,900", features: ["Full kitchen deep", "Bathroom deep", "Window cleaning"], buttons: [{ text: "Select Plan" }] }, + { id: "enterprise", name: "Office Full", price: "₹8,900", features: ["Total facility clean", "Sanitization", "Workstation care"], buttons: [{ text: "Select Plan" }] }, ]} title="Flexible Packages" description="Choose the perfect cleaning routine for your needs." @@ -124,55 +112,50 @@ export default function LandingPage() {