From 74f70a148d16f548c97a4baab5c8c724847770de Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:57:04 +0000 Subject: [PATCH 1/4] Update src/app/cart/page.tsx --- src/app/cart/page.tsx | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 8f12f52..a7675db 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -7,17 +7,30 @@ import ProductCart from '@/components/ecommerce/cart/ProductCart'; export default function CartPage() { return ( - + - +
{}} items={[]} total="₹0" buttons={[{ text: "Proceed to Checkout", href: "/checkout" }]} />
-- 2.49.1 From 49d28b4032d6eff5eba02f9d4d989ebcf2fd1287 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:57:05 +0000 Subject: [PATCH 2/4] Update src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx index efd85fb..a6f0f55 100644 --- a/src/app/checkout/page.tsx +++ b/src/app/checkout/page.tsx @@ -6,17 +6,30 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS export default function CheckoutPage() { return ( - + - +

Checkout

Secure payment portal under construction.

-- 2.49.1 From 4993581306e499198cf030dff13d6a71e2f68acb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:57:05 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 203 +++++++++++++++++++++++------------------------ 1 file changed, 99 insertions(+), 104 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 38a314e..de36955 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,120 +20,115 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="mediumLarge" sizing="mediumLargeSizeMediumTitles" - background="noiseDiagonalGradient" - cardStyle="outline" - primaryButtonStyle="radial-glow" - secondaryButtonStyle="layered" - headingFontWeight="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" > - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -

1. Foundation: Inventory & Logistics Optimization.

-

2. Growth: Customer Acquisition through Social Ads.

-

3. Retention: Loyalty Programs for long-term profit.

-
-
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 9bd1331b7fb6c1395b084beca7e7ecf5c1402b77 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:57:05 +0000 Subject: [PATCH 4/4] Update src/app/products/page.tsx --- src/app/products/page.tsx | 34 ++++++++++++++++++++++++---------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 658363d..522e71f 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -7,23 +7,37 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree'; export default function ProductListingPage() { return ( - + - + -- 2.49.1