From 131528ecf311b9a81729784a21d1756be4a819ba Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 14:44:32 +0000 Subject: [PATCH 1/3] 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 45eb1cd..b8996ea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -166,8 +166,8 @@ export default function CocaColaPage() { testimonial="Coca-Cola isn't just a drink—it's a moment of pure happiness. The refreshing taste and iconic brand have been part of my life for decades. It's simply the best!" rating={5} author="Sarah Mitchell, Global Consumer" - ratingAnimation="entrance-slide" - avatarsAnimation="entrance-slide" + ratingAnimation="slide-up" + avatarsAnimation="slide-up" useInvertedBackground={false} avatars={[ { src: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Sarah Mitchell" }, -- 2.49.1 From 4a8953464175ab85376c9ffadb4a8aba55716c58 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 14:44:33 +0000 Subject: [PATCH 2/3] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 3e47f6a..00654df 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { use, useCallback } from "react"; +import { use, useCallback, useState } from "react"; import { useRouter } from "next/navigation"; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; @@ -19,6 +19,7 @@ interface ProductPageProps { export default function ProductPage({ params }: ProductPageProps) { const { id } = use(params); const router = useRouter(); + const [cartOpen, setCartOpen] = useState(false); const { product, @@ -33,8 +34,6 @@ export default function ProductPage({ params }: ProductPageProps) { const { items: cartItems, - isOpen: cartOpen, - setIsOpen: setCartOpen, addItem, updateQuantity, removeItem, -- 2.49.1 From b865ac391ac15275dce1489c21772d8167f9f58d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 14:44:33 +0000 Subject: [PATCH 3/3] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 934cf18..6e90a2d 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -1,5 +1,6 @@ "use client"; +import { useState } from "react"; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -13,11 +14,16 @@ export default function ShopPage() { isLoading, search, setSearch, + category, + setCategory, + sort, + setSort, filters, - cartOpen, - setCartOpen, + categories, } = useProductCatalog({ basePath: "/shop" }); + const [cartOpen, setCartOpen] = useState(false); + if (isLoading) { return (