From 37f292e84e7e6ba00c24b95e475dd39605004f3b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 10:13:19 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 118 +++++++++++++++++++++++++++++++---------------- 1 file changed, 77 insertions(+), 41 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index db27dc2..72718ad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,21 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqBase from '@/components/sections/faq/FaqBase'; + +// New Imports +import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; // For offerings +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; // For faq +import ContactSplit from '@/components/sections/contact/ContactSplit'; // For contact +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; // For footer + +// Existing Imports import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Clock, DollarSign, Facebook, Instagram, MessageCircle, Smile, Users, Wrench, Zap } from "lucide-react"; +import { Clock, DollarSign, Smile, Users, Wrench, Zap } from "lucide-react"; // Keep existing Lucide icons for FeatureBento export default function LandingPage() { return ( @@ -153,10 +157,10 @@ export default function LandingPage() { imageSrc: "http://img.b2bpic.net/free-photo/good-looking-successful-middle-aged-female-manager-white-shirt-posing-touching-face-smiling_343059-2.jpg", imageAlt: "Sagar Mundhokar avatar"}, { id: "4", name: "Anjali Sharma", handle: "@AnjaliS", testimonial: "Excellent service! The plumber was very professional and fixed our complex issue efficiently. Definitely our go-to for future plumbing needs.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3552.jpg", imageAlt: "Anjali Sharma avatar"}, + imageSrc: "http://img.b2bpic.net/free-photo/attractive-latino-female-model-warm-bright-blue-sweater_633478-2074.jpg", imageAlt: "Anjali Sharma avatar"}, { id: "5", name: "Rohan Patel", handle: "@RohanP", testimonial: "Prompt arrival and identified the problem quickly. The repair was done neatly and the pricing was very fair. Highly satisfied!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/attractive-latino-female-model-warm-bright-blue-sweater_633478-2074.jpg", imageAlt: "Rohan Patel avatar"}, + imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3552.jpg", imageAlt: "Rohan Patel avatar"}, ]} showRating={true} title="What Our Clients Say" @@ -165,34 +169,54 @@ export default function LandingPage() {
-
-
- console.log("Contact form submitted with email:", email)} />
); -} +} \ No newline at end of file -- 2.49.1