From c8583d4d9a87d33cc7c0da70846de6014005cbe1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 13:46:18 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 67 +++++++++++++++---------------------------- 1 file changed, 23 insertions(+), 44 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e815f73..89d0ceb 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,6 +1,5 @@ "use client"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -23,69 +22,49 @@ export default function BlogPage() { secondaryButtonStyle="layered" headingFontWeight="semibold" > - + +
{isLoading ? (

Loading posts...

) : ( - +
+ +
)} - +
+ ); } -- 2.49.1 From e4ffc8380f6249133f93202c50531b86801d3f75 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 13:46:19 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ac5350..02e5033 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,13 +27,13 @@ export default function SitePage() { > @@ -41,7 +41,7 @@ export default function SitePage() { Date: Thu, 19 Feb 2026 13:46:20 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 231 ++++++++++++++++++------------------- 1 file changed, 115 insertions(+), 116 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 7635b1a..16461a1 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -2,7 +2,6 @@ import { use, useCallback } from "react"; import { useRouter } from "next/navigation"; -import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard"; @@ -66,6 +65,12 @@ export default function ProductPage({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const footerColumns = [ + { title: "Shop", items: [{ label: "All Fragrances", href: "/shop" }, { label: "New Arrivals", href: "/shop" }, { label: "Best Sellers", href: "/shop" }] }, + { title: "Company", items: [{ label: "About Us", href: "/#about" }, { label: "Our Story", href: "/#about" }, { label: "Contact", href: "/#contact" }] }, + { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Shipping", href: "#" }, { label: "Returns", href: "#" }] } + ]; + if (isLoading) { return ( - - -
-

Loading product...

-
- -
+ +
+

Loading product...

+
+
); } @@ -123,39 +126,37 @@ export default function ProductPage({ params }: ProductPageProps) { secondaryButtonStyle="layered" headingFontWeight="semibold" > - -