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." 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