From 9811e4d81287781c8f45ec6a8b9846e295c00e03 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 01:55:10 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 70 ++++++++++++++++++------------------------------ 1 file changed, 26 insertions(+), 44 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 93d7469..d1fdbdc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,14 +3,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; -import TeamCardOne from '@/components/sections/team/TeamCardOne'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import TextAbout from '@/components/sections/about/TextAbout'; export default function LandingPage() { @@ -71,18 +71,9 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} plans={[ - { - id: "fade", price: "$35", name: "Precision Fade", features: ["Consultation", "Skin fade", "Hot towel finish"], - buttons: [{ text: "Book Now", href: "#contact" }] - }, - { - id: "beard", price: "$25", name: "Beard Sculpt", features: ["Beard trim", "Lineup", "Conditioning balm"], - buttons: [{ text: "Book Now", href: "#contact" }] - }, - { - id: "shave", price: "$45", name: "Hot Towel Shave", features: ["Steam treatment", "Straight razor shave", "Aftershave balm"], - buttons: [{ text: "Book Now", href: "#contact" }] - } + { id: "fade", price: "$35", name: "Precision Fade", features: ["Consultation", "Skin fade", "Hot towel finish"], buttons: [{ text: "Book Now", href: "#contact" }] }, + { id: "beard", price: "$25", name: "Beard Sculpt", features: ["Beard trim", "Lineup", "Conditioning balm"], buttons: [{ text: "Book Now", href: "#contact" }] }, + { id: "shave", price: "$45", name: "Hot Towel Shave", features: ["Steam treatment", "Straight razor shave", "Aftershave balm"], buttons: [{ text: "Book Now", href: "#contact" }] } ]} title="Our Professional Services" description="Expert grooming to keep you sharp." @@ -102,50 +93,41 @@ export default function LandingPage() {
-
-
-
@@ -160,11 +142,11 @@ export default function LandingPage() { -- 2.49.1