From 57499fcc3aeab6c4afc27cb4e28bcb668492f453 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 28 Apr 2026 08:54:39 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 315 +++++++---------------------------------------- 1 file changed, 47 insertions(+), 268 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 651582f..701c032 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; import HeroLogo from '@/components/sections/hero/HeroLogo'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import { Award, Coffee, Sparkles } from "lucide-react"; export default function LandingPage() { @@ -32,22 +32,11 @@ export default function LandingPage() { @@ -186,44 +109,11 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} plans={[ - { - id: "basic", - badge: "Essential", - price: "$99", - subtitle: "Perfect for Home Users", - buttons: [ - { - text: "Choose", - href: "#contact", - }, - ], - features: [ - "Annual Deep Clean", - "Calibration Check", - "Minor Repair", - ], - }, - { - id: "pro", - badge: "Commercial", - price: "$249", - subtitle: "For High Volume Cafes", - buttons: [ - { - text: "Choose", - href: "#contact", - }, - ], - features: [ - "Quarterly Service", - "Priority Support", - "Calibration Check", - "Descaling Treatment", - ], - }, + { id: "basic", badge: "Essential", price: "$99", subtitle: "Home Users", buttons: [{ text: "Select", href: "#contact" }], features: ["Annual Deep Clean", "Calibration Check"] }, + { id: "pro", badge: "Commercial", price: "$249", subtitle: "Cafes", buttons: [{ text: "Select", href: "#contact" }], features: ["Quarterly Service", "Priority Support"] }, ]} - title="Service Packages" - description="Maintenance plans built for your coffee shop's daily operational success." + title="Service Plans" + description="Plans built for success." /> @@ -234,160 +124,49 @@ export default function LandingPage() { gridVariant="uniform-all-items-equal" useInvertedBackground={false} metrics={[ - { - id: "m1", - value: "12", - title: "Years Experience", - description: "Deep industry knowledge.", - icon: Coffee, - }, - { - id: "m2", - value: "250+", - title: "Cafes Partnered", - description: "Supporting local businesses.", - icon: Award, - }, - { - id: "m3", - value: "15k+", - title: "Cups Brewed", - description: "Tested by our crew.", - icon: Sparkles, - }, + { id: "m1", value: "12", title: "Years", description: "Industry experience", icon: Coffee }, + { id: "m2", value: "250+", title: "Cafes", description: "Active partners", icon: Award }, + { id: "m3", value: "15k+", title: "Cups", description: "Tested and tasted", icon: Sparkles }, ]} - title="BeanCare By The Numbers" - description="Reliable data backing our dedication to the perfect cup of coffee." + title="BeanCare Impact" + description="Reliable dedication." />
-
-