From 013cb6f4a767692de23eeabbb6669f33c5174853 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 22:21:16 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 121 +++++++++++++---------------------------------- 1 file changed, 32 insertions(+), 89 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 96cd01c..2ab3a3b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,14 +38,10 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 4b2de3060b36ab0a7df2734438a7e868beb61b3d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 22:21:17 +0000 Subject: [PATCH 2/2] Update src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 77 +++++++++++++++++++++++++---------- 1 file changed, 55 insertions(+), 22 deletions(-) diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index 219ecab..52f1294 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -1,17 +1,19 @@ "use client"; -import { useParams } from "next/navigation"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterCard from '@/components/sections/footer/FooterCard'; +import { useParams } from "next/navigation"; import { Twitter, Instagram, Linkedin } from "lucide-react"; export default function ProductDetailPage() { - const { id } = useParams(); + const params = useParams(); + const productId = params?.id; - const handleCheckout = () => { - window.location.href = "https://www.shopier.com/checkout"; + const handleShopierCheckout = () => { + // Integration logic for Shopier checkout process + window.open(`https://www.shopier.com/ShowProductNew/products.php?id=${productId}`, "_blank"); }; return ( @@ -19,7 +21,7 @@ export default function ProductDetailPage() { defaultButtonVariant="text-stagger" defaultTextAnimation="reveal-blur" borderRadius="rounded" - contentWidth="medium" + contentWidth="smallMedium" sizing="mediumLargeSizeMediumTitles" background="blurBottom" cardStyle="solid" @@ -28,25 +30,56 @@ export default function ProductDetailPage() { headingFontWeight="light" > - -
-

Product ID: {id}

-

Explore the refined details of our premium product collection. Built with precision for your lifestyle.

- + + +
+
+
+ Product Image +
+
+

Premium Product {productId}

+

$199.00

+ +
+ + +
+ +
+ + +
+
+
+ -- 2.49.1