From ff1ec7867c3c2fc842e232c54dc23e9eed54ca55 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 16:06:30 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 54 ++++++++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc22c63..71153bd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; import { Cog, Gauge, ShieldCheck, Type } from "lucide-react"; export default function LandingPage() { @@ -16,12 +16,12 @@ export default function LandingPage() { @@ -32,17 +32,17 @@ export default function LandingPage() { { name: "Home", id: "/"}, { - name: "Products", id: "/products"}, + name: "Products", id: "#product-showcase"}, { - name: "About", id: "/about"}, + name: "About", id: "#brand-story"}, { - name: "Contact", id: "/contact"}, + name: "Contact", id: "#newsletter"}, { - name: "Shop", id: "/shop"}, + name: "Shop", id: "#product-showcase"}, ]} brandName="FLAXR" button={{ - text: "Shop Now", href: "/shop"}} + text: "Shop Now", href: "#product-showcase"}} animateOnLoad={true} /> @@ -56,9 +56,9 @@ export default function LandingPage() { tag="FLAXR" buttons={[ { - text: "Explore Products", href: "/products"}, + text: "Explore Products", href: "#product-showcase"}, { - text: "Shop Now", href: "/shop"}, + text: "Shop Now", href: "#product-showcase"}, ]} mediaItems={[ { @@ -100,37 +100,41 @@ export default function LandingPage() {
-