From cecb08ca25a637c3b17485b0c5fbb484e008ffcc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:08:18 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b105b7e..878dc5b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -41,6 +41,7 @@ export default function LandingPage() { { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, + { name: "Seller Upload", id: "/seller-upload" }, ]} brandName="Mart" /> @@ -93,15 +94,16 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { id: "p1", brand: "Mart", name: "Tech Cube", price: "$129", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-autumn-journey-elements-composition-with-laptop_23-2148634126.jpg", onProductClick: () => window.location.href = 'tel:+15550199' }, - { id: "p2", brand: "Mart", name: "Flow Device", price: "$89", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/sustainability-concept-with-blank-geometric-forms-growing-plant_23-2148994247.jpg", onProductClick: () => window.location.href = 'tel:+15550199' }, - { id: "p3", brand: "Mart", name: "Sync Pods", price: "$159", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/top-view-hard-drive-blue-light_23-2149417056.jpg", onProductClick: () => window.location.href = 'tel:+15550199' }, - { id: "p4", brand: "Mart", name: "Apex Hub", price: "$249", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/3d-view-blooming-flower_23-2150472254.jpg", onProductClick: () => window.location.href = 'tel:+15550199' }, - { id: "p5", brand: "Mart", name: "Orbit Light", price: "$69", rating: 4, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/perfectly-ordered-compositions-high-angle_23-2149872088.jpg", onProductClick: () => window.location.href = 'tel:+15550199' }, - { id: "p6", brand: "Mart", name: "Nexus Core", price: "$299", rating: 5, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/blue-model-career-kit-arrangement_23-2150084001.jpg", onProductClick: () => window.location.href = 'tel:+15550199' }, + { id: "p1", brand: "Mart (Seller: TechSupplies | 555-0100)", name: "Tech Cube", price: "$129", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-autumn-journey-elements-composition-with-laptop_23-2148634126.jpg" }, + { id: "p2", brand: "Mart (Seller: GadgetHub | 555-0200)", name: "Flow Device", price: "$89", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/sustainability-concept-with-blank-geometric-forms-growing-plant_23-2148994247.jpg" }, + { id: "p3", brand: "Mart (Seller: SyncLab | 555-0300)", name: "Sync Pods", price: "$159", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/top-view-hard-drive-blue-light_23-2149417056.jpg" }, + { id: "p4", brand: "Mart (Seller: ApexPro | 555-0400)", name: "Apex Hub", price: "$249", rating: 5, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/3d-view-blooming-flower_23-2150472254.jpg" }, + { id: "p5", brand: "Mart (Seller: OrbitTech | 555-0500)", name: "Orbit Light", price: "$69", rating: 4, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/perfectly-ordered-compositions-high-angle_23-2149872088.jpg" }, + { id: "p6", brand: "Mart (Seller: NexusOps | 555-0600)", name: "Nexus Core", price: "$299", rating: 5, reviewCount: "300", imageSrc: "http://img.b2bpic.net/free-photo/blue-model-career-kit-arrangement_23-2150084001.jpg" }, ]} title="Explore Collections" - description="Hand-picked high-tech accessories for the modern lifestyle. Click any product to contact our seller directly by phone." + description="Hand-picked high-tech accessories. Seller info is displayed with each product. Interested in selling? Visit our Upload Page." + buttons={[{ text: "Go to Seller Upload", href: "/seller-upload" }]} /> -- 2.49.1 From 0b538e22a8018e9d9d3d2115603437ef4b2df049 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:08:18 +0000 Subject: [PATCH 2/3] Add src/app/seller-upload/page.tsx --- src/app/seller-upload/page.tsx | 71 ++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 src/app/seller-upload/page.tsx diff --git a/src/app/seller-upload/page.tsx b/src/app/seller-upload/page.tsx new file mode 100644 index 0000000..f1f7586 --- /dev/null +++ b/src/app/seller-upload/page.tsx @@ -0,0 +1,71 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function SellerUploadPage() { + return ( + + + + +
+ console.log("Form submitted:", data)} + /> +
+ + +
+
+ ); +} -- 2.49.1 From 238dc7e9f4f316a1dbd975cf2cc74530627e50bd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 15:08:19 +0000 Subject: [PATCH 3/3] Update src/app/stores/[id]/page.tsx --- src/app/stores/[id]/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/stores/[id]/page.tsx b/src/app/stores/[id]/page.tsx index c478b7b..e8c4051 100644 --- a/src/app/stores/[id]/page.tsx +++ b/src/app/stores/[id]/page.tsx @@ -23,6 +23,7 @@ export default function StorePage({ params }: { params: { id: string } }) { { name: "Home", id: "/" }, { name: "Seller Dashboard", id: "/seller-dashboard" }, { name: "Stores", id: "/stores/1" }, + { name: "Seller Upload", id: "/seller-upload" }, ]} brandName="Mart" /> -- 2.49.1