From 860b8538a7baf0236b2ed5db994d63d739100173 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 11:04:17 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 76cb5b0..53b9ecd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; import ProductCardFour from "@/components/sections/product/ProductCardFour"; import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; @@ -35,21 +35,30 @@ export default function LandingPage() { { name: "Benefits", id: "benefits" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Shop", id: "/products" } ]} />
- @@ -77,7 +86,7 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} buttons={[ - { text: "Browse All Products", href: "#contact" } + { text: "Browse All Products", href: "/products" } ]} />
@@ -213,7 +222,7 @@ export default function LandingPage() { ctaTitle="Ready to Start Learning?" ctaDescription="Join thousands of professionals advancing their skills. Get started today with instant access." ctaIcon={ArrowRight} - ctaButton={{ text: "Browse Products Now", href: "#featured-products" }} + ctaButton={{ text: "Browse Products Now", href: "/products" }} faqs={[ { id: "1", title: "How do I get started?", content: "Simply browse our product catalog, select items that interest you, and complete checkout. You'll have instant access to begin learning immediately." -- 2.49.1 From e17a85079456b866642ff23119833d6e5432aebc Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 11:04:18 +0000 Subject: [PATCH 2/2] Add src/app/products/page.tsx --- src/app/products/page.tsx | 86 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..6bf0cb7 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Linkedin, Mail, Star, Twitter } from "lucide-react"; + +export default function ProductsPage() { + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file -- 2.49.1