From 5a379566260b58f043f34fd767e05dd173709909 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 14:04:15 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 155 ++++++++++------------------------------------- 1 file changed, 31 insertions(+), 124 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ea26525..5a46709 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import { Zap, Shield, TrendingUp, Cloud } from 'lucide-react'; +import { Zap, Shield, TrendingUp, Cloud, CreditCard, Mail } from 'lucide-react'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; @@ -14,6 +14,7 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; export default function LandingPage() { return ( @@ -36,11 +37,9 @@ export default function LandingPage() { { name: "Home", id: "hero"}, { - name: "About", id: "about"}, + name: "Products", id: "products"}, { name: "Pricing", id: "pricing"}, - { - name: "Testimonials", id: "testimonials"}, { name: "Contact", id: "contact"}, ]} @@ -56,7 +55,7 @@ export default function LandingPage() { description="Unlock high-growth systems tailored to scale your operations and drive predictable revenue effortlessly." buttons={[ { - text: "Get Started", href: "#contact"}, + text: "View Products", href: "#products"}, ]} carouselItems={[ { @@ -75,35 +74,24 @@ export default function LandingPage() { /> -
- -
- -
- +
@@ -117,105 +105,23 @@ export default function LandingPage() { id: "p1", title: "Accelerator", price: "$2,999", period: "/mo", features: [ "1-on-1 Strategy", "Funnel Automation", "Support"], button: { - text: "Select", href: "#contact"}, - imageSrc: "http://img.b2bpic.net/free-photo/group-graphics-designers-using-digital-tablet_1170-989.jpg", imageAlt: "teamwork digital office"}, + text: "Secure Checkout", href: "#contact"}, + imageSrc: "http://img.b2bpic.net/free-photo/group-graphics-designers-using-digital-tablet_1170-989.jpg"}, { id: "p2", title: "Growth Engine", price: "$5,999", period: "/mo", features: [ "Everything in Accelerator", "Custom Automation", "Priority"], button: { - text: "Select", href: "#contact"}, - imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-125151.jpg?_wi=2", imageAlt: "teamwork digital office"}, + text: "Secure Checkout", href: "#contact"}, + imageSrc: "http://img.b2bpic.net/free-photo/empty-business-workplace-equipped-with-modern-tech-tools-serve-enterprise_482257-125151.jpg?_wi=2"}, { id: "p3", title: "Enterprise Elite", price: "$10,999", period: "/mo", features: [ "Everything in Growth", "Full Dedicated Team", "24/7 Support"], button: { - text: "Select", href: "#contact"}, - imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904311.jpg?_wi=2", imageAlt: "teamwork digital office"}, + text: "Contact Sales", href: "#contact"}, + imageSrc: "http://img.b2bpic.net/free-photo/dynamic-data-visualization-3d_23-2151904311.jpg?_wi=2"}, ]} title="Transparent Growth Plans" - description="Choose the accelerator that fits your current stage." - /> - - -
- -
- -
- -
- -
- -
- -
-
@@ -224,10 +130,11 @@ export default function LandingPage() { useInvertedBackground={false} background={{ variant: "plain"}} - tag="Get Started" - title="Ready to scale?" - description="Join the elite cohort hitting $10k/week." - buttonText="Apply Now" + tag="Conversion" + title="Ready to start?" + description="Our payment infrastructure is secure and verified. Apply today to finalize setup." + buttonText="Apply & Checkout" + onSubmit={(email) => console.log("Setup payment for:", email)} /> @@ -237,7 +144,7 @@ export default function LandingPage() { leftLink={{ text: "Privacy Policy", href: "#"}} rightLink={{ - text: "Terms of Service", href: "#"}} + text: "Contact Support", href: "mailto:support@growthaccelerate.com"}} /> -- 2.49.1