From 16f7eccb5e5597e2e00063599b6e224f807b5c7a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 11:05:53 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index f9fff01..221d8cd 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,16 +28,15 @@ export default function BlogPage() { brandName="Nano Mango" navItems={[ { name: "Home", id: "/" }, - { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Testimonials", id: "testimonials" }, - { name: "FAQs", id: "faqs" }, + { name: "Products", id: "/#products" }, + { name: "About", id: "/#about" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQs", id: "/#faqs" }, ]} - button={{ text: "Shop Now", href: "#products" }} + button={{ text: "Shop Now", href: "/#products" }} buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" /> -- 2.49.1 From b62c232b15349601c0d73da12bb167187b32baed Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 11:05:54 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cd7fe41..37fc5d5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,7 +43,7 @@ export default function SitePage() { Date: Mon, 23 Feb 2026 11:05:55 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index fcca7cc..ace2518 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -10,7 +10,6 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; -import Footer from "@/components/footer/Footer"; // Assuming a generic footer component interface ProductPageProps { params: Promise<{ id: string }>; @@ -97,7 +96,6 @@ function ProductPageContent({ params }: ProductPageProps) { buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" />
@@ -105,9 +103,6 @@ function ProductPageContent({ params }: ProductPageProps) {

Loading product...

- ); @@ -136,7 +131,6 @@ function ProductPageContent({ params }: ProductPageProps) { buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" />
@@ -152,9 +146,6 @@ function ProductPageContent({ params }: ProductPageProps) {
- ); @@ -182,7 +173,6 @@ function ProductPageContent({ params }: ProductPageProps) { buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" />
@@ -221,9 +211,6 @@ function ProductPageContent({ params }: ProductPageProps) { ]} />
- ); -- 2.49.1 From 40edbd8ca133e0ac295e71f506484791dafcb6b0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 11:05:56 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index b7765ca..f2436e2 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -6,7 +6,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog"; -import Footer from "@/components/footer/Footer"; // Assuming a generic footer component function ShopPageContent() { const { @@ -40,7 +39,6 @@ function ShopPageContent() { buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" />
@@ -48,9 +46,6 @@ function ShopPageContent() {

Loading products...

- ); @@ -78,7 +73,6 @@ function ShopPageContent() { buttonClassName="shadow-lg" navItemClassName="text-foreground/80 hover:text-foreground" className="backdrop-blur-sm bg-card/70" - navItemsAnimation="background-highlight" />
@@ -92,9 +86,6 @@ function ShopPageContent() { emptyMessage="No products found" />
- ); -- 2.49.1