From f263b8824298a13e4ac382c99ffdee5e8052a516 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 03:59:50 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 33 +++++++++++++++++++-------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 69cd20a..3793291 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,7 @@ "use client" import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; @@ -11,7 +11,7 @@ import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Brain, Heart, Rocket, Shield, Sparkles, TrendingUp, Zap } from "lucide-react"; +import { Brain, Heart, Rocket, Shield, Sparkles, TrendingUp, Zap, Hexagon, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react"; export default function LandingPage() { return ( @@ -41,24 +41,29 @@ export default function LandingPage() {
- Date: Fri, 20 Feb 2026 03:59:51 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index da0c248..b2fde89 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,8 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "How It Works", id: "about" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Get Started", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Get Started", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -162,8 +161,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "How It Works", id: "about" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Get Started", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Get Started", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -241,8 +239,7 @@ export default function ProductPage({ params }: ProductPageProps) { { name: "How It Works", id: "about" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Get Started", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Get Started", id: "contact" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> -- 2.49.1 From 39638c57888246fc125caafad6d941f90f7d21d0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 03:59:52 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f0d72f5..3b4fdd3 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,8 +40,7 @@ export default function ShopPage() { { name: "How It Works", id: "about" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Get Started", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Get Started", id: "contact" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -111,8 +110,7 @@ export default function ShopPage() { { name: "How It Works", id: "about" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Get Started", id: "contact" }, - { name: "Shop", id: "/shop" } + { name: "Get Started", id: "contact" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> -- 2.49.1