From ddcd49bedf73ee46859aa27633a86a127de1fa92 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:16:57 +0000 Subject: [PATCH 1/7] Update src/app/account/page.tsx --- src/app/account/page.tsx | 110 +++++++++------------------------------ 1 file changed, 26 insertions(+), 84 deletions(-) diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx index e78de8e..74e1936 100644 --- a/src/app/account/page.tsx +++ b/src/app/account/page.tsx @@ -18,9 +18,7 @@ export default function AccountPage() { ]; const navButton = { - text: "List Your Item", - href: "sell", - }; + text: "List Your Item", href: "sell"}; return ( Security > Two-Factor Authentication. Follow the prompts to enable 2FA via SMS or authenticator app. This adds an extra security layer to your account.", - }, + id: "6", title: "How do I enable two-factor authentication?", content: + "Go to Settings > Security > Two-Factor Authentication. Follow the prompts to enable 2FA via SMS or authenticator app. This adds an extra security layer to your account."}, ]} sideTitle="Account Management" sideDescription="Learn how to manage your profile, listings, payments, and security settings" textPosition="left" useInvertedBackground={false} animationType="smooth" + faqsAnimation="slide-up" /> @@ -220,8 +165,7 @@ export default function AccountPage() { Date: Wed, 11 Mar 2026 04:16:57 +0000 Subject: [PATCH 2/7] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 40 ++++++++++------------------------------ 1 file changed, 10 insertions(+), 30 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 561747c..56bc9cf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -18,8 +18,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Marketplace", - items: [ + title: "Marketplace", items: [ { label: "Browse Listings", href: "/" }, { label: "How It Works", href: "/" }, { label: "My Account", href: "/my-listings" }, @@ -27,8 +26,7 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/" }, { label: "Contact", href: "/contact" }, { label: "Blog", href: "/" }, @@ -36,8 +34,7 @@ export default function ContactPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Safety Tips", href: "/" }, { label: "FAQ", href: "/" }, { label: "Terms of Service", href: "/" }, @@ -85,41 +82,24 @@ export default function ContactPage() { -- 2.49.1 From 72535688cecbd9cc574f485f394b5e71b7b957d4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:16:57 +0000 Subject: [PATCH 3/7] Update src/app/listing/[id]/page.tsx --- src/app/listing/[id]/page.tsx | 201 ++++++---------------------------- 1 file changed, 36 insertions(+), 165 deletions(-) diff --git a/src/app/listing/[id]/page.tsx b/src/app/listing/[id]/page.tsx index 622a4ed..b15b2c5 100644 --- a/src/app/listing/[id]/page.tsx +++ b/src/app/listing/[id]/page.tsx @@ -2,26 +2,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import TeamCardOne from "@/components/sections/team/TeamCardOne"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import Link from "next/link"; - -export default function ListingDetailPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Browse Listings", id: "listings" }, - { name: "Sell", id: "sell" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - ]; - - const navButton = { - text: "List Your Item", - href: "sell", - }; +export default function ListingDetailPage({ params }: { params: { id: string } }) { return (
-
- - ← Back to Home - -
- -
-
- Vintage Leather Sofa -
- -
-
- - Featured - -
-

- Vintage Leather Sofa -

-

Brown • 2 Colors Available

- -
-

$450

-

Negotiable

-
- -
-
- -
-

Verified Seller

-

Ahmed Karim • 98% Positive Rating

-
-
-
- -
-

No Complaints

-

Clean record • 250+ successful transactions

-
-
-
- -
-

Listed 2 Hours Ago

-

Active • Recently updated

-
-
-
- - - -
-
- -
-

Description

-

- Beautiful vintage leather sofa in excellent condition. Genuine brown leather with minimal wear. Perfect for living rooms or office spaces. Dimensions: 84" W x 36" D x 30" H. Smoke-free home. -

-

- Local pickup available in downtown area. Delivery can be arranged for additional fee. Must sell by end of month. Contact for more photos or details. -

-
+

Listing ID: {params.id}

+

Detailed listing information would be loaded here based on the ID.

- -
@@ -196,30 +70,27 @@ export default function ListingDetailPage() { Date: Wed, 11 Mar 2026 04:16:58 +0000 Subject: [PATCH 4/7] Update src/app/listings/page.tsx --- src/app/listings/page.tsx | 104 +++++++++----------------------------- 1 file changed, 23 insertions(+), 81 deletions(-) diff --git a/src/app/listings/page.tsx b/src/app/listings/page.tsx index cc22299..22b9858 100644 --- a/src/app/listings/page.tsx +++ b/src/app/listings/page.tsx @@ -31,9 +31,7 @@ export default function ListingsPage() { { name: "Contact", id: "/contact" }, ]} button={{ - text: "List Your Item", - href: "/sell", - }} + text: "List Your Item", href: "/sell"}} brandName="ClassifiedHub" /> @@ -42,58 +40,22 @@ export default function ListingsPage() {