Update src/app/browse/page.tsx
This commit is contained in:
@@ -13,14 +13,12 @@ export default function BrowsePage() {
|
||||
{ name: "Browse", id: "products" },
|
||||
{ name: "Sell", id: "how-to-sell" },
|
||||
{ name: "Categories", id: "categories" },
|
||||
{ name: "NFTs", id: "nfts" },
|
||||
{ name: "About", id: "about" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Platform",
|
||||
items: [
|
||||
title: "Platform", items: [
|
||||
{ label: "Browse Auctions", href: "/browse" },
|
||||
{ label: "Become a Seller", href: "/seller" },
|
||||
{ label: "Categories", href: "#categories" },
|
||||
@@ -28,8 +26,7 @@ export default function BrowsePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Blog", href: "/blog" },
|
||||
{ label: "Careers", href: "/careers" },
|
||||
@@ -37,8 +34,7 @@ export default function BrowsePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{ label: "Seller Guide", href: "/seller-guide" },
|
||||
{ label: "Buyer Tips", href: "/buyer-tips" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
@@ -65,9 +61,7 @@ export default function BrowsePage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Start Listing",
|
||||
href: "/seller",
|
||||
}}
|
||||
text: "Start Listing", href: "/seller"}}
|
||||
brandName="AuctionHub"
|
||||
/>
|
||||
</div>
|
||||
@@ -85,47 +79,17 @@ export default function BrowsePage() {
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Ferrari Testarossa",
|
||||
price: "$487,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-woman-car-salon_1157-33181.jpg?_wi=2",
|
||||
imageAlt: "Red Ferrari sports car",
|
||||
},
|
||||
id: "1", name: "Ferrari Testarossa", price: "$487,000", imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-woman-car-salon_1157-33181.jpg?_wi=2", imageAlt: "Red Ferrari sports car"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Rolex Submariner Gold",
|
||||
price: "$42,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-woman-checking-time_23-2149322941.jpg?_wi=2",
|
||||
imageAlt: "Luxury gold watch",
|
||||
},
|
||||
id: "2", name: "Rolex Submariner Gold", price: "$42,500", imageSrc: "http://img.b2bpic.net/free-photo/business-woman-checking-time_23-2149322941.jpg?_wi=2", imageAlt: "Luxury gold watch"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Abstract Canvas #47",
|
||||
price: "$18,900",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/hand-painted-abstract-painting-pattern_23-2148975307.jpg?_wi=3",
|
||||
imageAlt: "Modern abstract painting",
|
||||
},
|
||||
id: "3", name: "Abstract Canvas #47", price: "$18,900", imageSrc: "http://img.b2bpic.net/free-vector/hand-painted-abstract-painting-pattern_23-2148975307.jpg?_wi=3", imageAlt: "Modern abstract painting"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Digital Realm NFT",
|
||||
price: "5.2 ETH",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/linear-gradient-vintage-cassette_52683-60215.jpg?_wi=2",
|
||||
imageAlt: "Digital collectible NFT",
|
||||
},
|
||||
id: "4", name: "Vintage Record Player", price: "$3,200", imageSrc: "http://img.b2bpic.net/free-vector/linear-gradient-vintage-cassette_52683-60215.jpg?_wi=2", imageAlt: "Vintage collectible record player"},
|
||||
{
|
||||
id: "5",
|
||||
name: "1967 Jaguar E-Type",
|
||||
price: "$156,000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lady-car_1157-7446.jpg?_wi=2",
|
||||
imageAlt: "Classic collector car",
|
||||
},
|
||||
id: "5", name: "1967 Jaguar E-Type", price: "$156,000", imageSrc: "http://img.b2bpic.net/free-photo/lady-car_1157-7446.jpg?_wi=2", imageAlt: "Classic collector car"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Cartier Diamond Watch",
|
||||
price: "$38,700",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-jewelry-shop-choosing-ring-together_1303-30658.jpg?_wi=2",
|
||||
imageAlt: "Diamond-studded luxury watch",
|
||||
},
|
||||
id: "6", name: "Cartier Diamond Watch", price: "$38,700", imageSrc: "http://img.b2bpic.net/free-photo/couple-jewelry-shop-choosing-ring-together_1303-30658.jpg?_wi=2", imageAlt: "Diamond-studded luxury watch"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -143,24 +107,16 @@ export default function BrowsePage() {
|
||||
imageAlt="Browse categories interface"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Luxury Vehicles",
|
||||
description: "Sports cars, classic automobiles, and exotic vehicles. Filter by make, model, year, and price.",
|
||||
icon: Car,
|
||||
title: "Luxury Vehicles", description: "Sports cars, classic automobiles, and exotic vehicles. Filter by make, model, year, and price.", icon: Car,
|
||||
},
|
||||
{
|
||||
title: "Premium Watches",
|
||||
description: "Mechanical timepieces, chronographs, and designer watches. Search by brand and collection.",
|
||||
icon: Watch,
|
||||
title: "Premium Watches", description: "Mechanical timepieces, chronographs, and designer watches. Search by brand and collection.", icon: Watch,
|
||||
},
|
||||
{
|
||||
title: "Fine Art",
|
||||
description: "Contemporary, modern, and classic artwork. Browse by artist, style, and medium.",
|
||||
icon: Palette,
|
||||
title: "Fine Art", description: "Contemporary, modern, and classic artwork. Browse by artist, style, and medium.", icon: Palette,
|
||||
},
|
||||
{
|
||||
title: "Digital Collectibles",
|
||||
description: "NFTs and blockchain-based art. Discover emerging digital artists and rare tokens.",
|
||||
icon: Zap,
|
||||
title: "Collectibles", description: "Vintage items, memorabilia, and rare collectibles. Discover emerging artists and unique finds.", icon: Zap,
|
||||
},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
@@ -180,24 +136,16 @@ export default function BrowsePage() {
|
||||
imageAlt="Bidding process"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Create Your Account",
|
||||
description: "Sign up in seconds with email or social login. Complete verification to start bidding immediately.",
|
||||
icon: Zap,
|
||||
title: "Create Your Account", description: "Sign up in seconds with email or social login. Complete verification to start bidding immediately.", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Place Your Bid",
|
||||
description: "Set your maximum bid on any auction. Our system automatically bids up to your limit.",
|
||||
icon: Car,
|
||||
title: "Place Your Bid", description: "Set your maximum bid on any auction. Our system automatically bids up to your limit.", icon: Car,
|
||||
},
|
||||
{
|
||||
title: "Win with Confidence",
|
||||
description: "Get real-time notifications of bid activity. All auctions are backed by our authentication guarantee.",
|
||||
icon: Watch,
|
||||
title: "Win with Confidence", description: "Get real-time notifications of bid activity. All auctions are backed by our authentication guarantee.", icon: Watch,
|
||||
},
|
||||
{
|
||||
title: "Secure Payment",
|
||||
description: "Pay only when you win. Multiple payment methods available with buyer protection.",
|
||||
icon: Palette,
|
||||
title: "Secure Payment", description: "Pay only when you win. Multiple payment methods available with buyer protection.", icon: Palette,
|
||||
},
|
||||
]}
|
||||
mediaAnimation="blur-reveal"
|
||||
|
||||
Reference in New Issue
Block a user