From d8c03e7db40951ae38ede220010875434f71ec6a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 23:55:42 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 0bdf961..7ec8284 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,6 +32,7 @@ export default function BlogPage() { { name: "Services", id: "services" }, { name: "Results", id: "results" }, { name: "Pricing", id: "pricing" }, + { name: "Products", id: "products" }, { name: "Contact", id: "contact" } ]} button={{ text: "Start Transformation", href: "#contact" }} @@ -66,6 +67,7 @@ export default function BlogPage() { { label: "Home", href: "#" }, { label: "Services", href: "#services" }, { label: "Pricing", href: "#pricing" }, + { label: "Products", href: "#products" }, { label: "Results", href: "#results" } ] }, -- 2.49.1 From f182a0bb851ecb93edb81862ac3bf5852c8913b8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Feb 2026 23:55:43 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6947fc1..fe0943b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,11 +7,12 @@ import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaA import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Award, CheckCircle, Sparkles } from "lucide-react"; +import { Award, CheckCircle, Sparkles, Package } from "lucide-react"; export default function LandingPage() { return ( @@ -34,6 +35,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Results", id: "results" }, { name: "Pricing", id: "pricing" }, + { name: "Products", id: "products" }, { name: "Contact", id: "contact" } ]} button={{ @@ -163,6 +165,28 @@ export default function LandingPage() { /> +
+ +
+
Date: Thu, 26 Feb 2026 23:55:44 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 1c3a228..ef5ce37 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -97,8 +97,8 @@ function ProductPageContent({ params }: ProductPageProps) { {"name":"Services","id":"services"}, {"name":"Results","id":"results"}, {"name":"Pricing","id":"pricing"}, - {"name":"Contact","id":"contact"}, - {"name":"Shop","id":"/shop"} + {"name":"Products","id":"products"}, + {"name":"Contact","id":"contact"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -109,7 +109,7 @@ function ProductPageContent({ params }: ProductPageProps) {