From cd981f94635fc61db9a6e081e9804c956b890ea8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:56:17 +0000 Subject: [PATCH 1/5] Add src/app/cart/page.tsx --- src/app/cart/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/app/cart/page.tsx diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx new file mode 100644 index 0000000..8f12f52 --- /dev/null +++ b/src/app/cart/page.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ProductCart from '@/components/ecommerce/cart/ProductCart'; + +export default function CartPage() { + return ( + + + +
+ {}} items={[]} total="₹0" buttons={[{ text: "Proceed to Checkout", href: "/checkout" }]} /> +
+
+
+ ); +} \ No newline at end of file -- 2.49.1 From 8c991ffabe91c28a2292e621e83743ebd74d78f9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:56:18 +0000 Subject: [PATCH 2/5] Add src/app/checkout/page.tsx --- src/app/checkout/page.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/app/checkout/page.tsx diff --git a/src/app/checkout/page.tsx b/src/app/checkout/page.tsx new file mode 100644 index 0000000..efd85fb --- /dev/null +++ b/src/app/checkout/page.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; + +export default function CheckoutPage() { + return ( + + + +
+

Checkout

+

Secure payment portal under construction.

+
+
+
+ ); +} \ No newline at end of file -- 2.49.1 From 9be2cab58008adb9158ca189b226d962235ea232 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 04:56:18 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 179 +++++++++++++---------------------------------- 1 file changed, 48 insertions(+), 131 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a7a8b2b..38a314e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,8 @@ import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarou import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import TimelineHorizontalCardStack from '@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; export default function LandingPage() { return ( @@ -28,26 +30,13 @@ export default function LandingPage() { +
+ +
+ +
+ +

1. Foundation: Inventory & Logistics Optimization.

+

2. Growth: Customer Acquisition through Social Ads.

+

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

+
+
+
@@ -136,21 +107,8 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "f1", - title: "What payment methods do you accept?", - content: "We accept UPI, Credit/Debit cards, and all major digital wallets.", - }, - { - id: "f2", - title: "How long does shipping take?", - content: "Orders are typically delivered within 3-7 business days across India.", - }, - { - id: "f3", - title: "Do you offer returns?", - content: "Yes, we have a 7-day hassle-free return policy on most items.", - }, + { id: "f1", title: "What payment methods?", content: "UPI, Cards, Wallets." }, + { id: "f2", title: "Shipping?", content: "3-7 business days." }, ]} title="Common Questions" description="Everything you need to know about shopping with us." @@ -161,58 +119,17 @@ export default function LandingPage() {