5 Commits

Author SHA1 Message Date
1988919d60 Update src/app/seller/page.tsx 2026-03-11 23:04:16 +00:00
6829836c82 Update src/app/page.tsx 2026-03-11 23:04:16 +00:00
f33db749b3 Update src/app/contact/page.tsx 2026-03-11 23:04:15 +00:00
719f5b6945 Update src/app/browse/page.tsx 2026-03-11 23:04:15 +00:00
471e8619c8 Merge version_2 into main
Merge version_2 into main
2026-03-11 23:02:15 +00:00
4 changed files with 46 additions and 122 deletions

View File

@@ -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"

View File

@@ -11,14 +11,12 @@ export default function ContactPage() {
{ 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" },
@@ -26,8 +24,7 @@ export default function ContactPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
@@ -35,8 +32,7 @@ export default function ContactPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Seller Guide", href: "/seller-guide" },
{ label: "Buyer Tips", href: "/buyer-tips" },
{ label: "Privacy Policy", href: "#" },
@@ -70,41 +66,23 @@ export default function ContactPage() {
<FaqSplitText
faqs={[
{
id: "1",
title: "How long does item validation take?",
content:
"Our expert team validates most items within 24 hours. High-value items or complex authentications may take up to 48 hours. Once approved, your item goes live immediately.",
},
id: "1", title: "How long does item validation take?", content:
"Our expert team validates most items within 24 hours. High-value items or complex authentications may take up to 48 hours. Once approved, your item goes live immediately."},
{
id: "2",
title: "What are the seller fees?",
content:
"We charge a competitive 8% commission on final sale price, plus payment processing fees of 2.9% + $0.30. No hidden fees. You keep the rest.",
},
id: "2", title: "What are the seller fees?", content:
"We charge a competitive 8% commission on final sale price, plus payment processing fees of 2.9% + $0.30. No hidden fees. You keep the rest."},
{
id: "3",
title: "How do I know items are authentic?",
content:
"All items are verified by certified experts in their respective categories. We stand behind authenticity with our guarantee program.",
},
id: "3", title: "How do I know items are authentic?", content:
"All items are verified by certified experts in their respective categories. We stand behind authenticity with our guarantee program."},
{
id: "4",
title: "Can I sell NFTs?",
content:
"Yes! We support blockchain-verified NFTs. Simply provide the contract address and token ID, and we handle the rest including smart contract integration.",
},
id: "4", title: "What items can I sell?", content:
"We accept luxury vehicles, premium watches, fine art, vintage collectibles, and other high-value items. All items must pass our authentication process."},
{
id: "5",
title: "What payment methods do you accept?",
content:
"We accept credit cards, bank transfers, cryptocurrency (Bitcoin, Ethereum), and digital wallets. All transactions are secured and insured.",
},
id: "5", title: "What payment methods do you accept?", content:
"We accept credit cards, bank transfers, and digital wallets. All transactions are secured and insured."},
{
id: "6",
title: "How do I bid and win?",
content:
"Register, set a proxy bid, and our system automatically bids on your behalf up to your maximum. The highest bidder wins. Real-time notifications keep you updated.",
},
id: "6", title: "How do I bid and win?", content:
"Register, set a proxy bid, and our system automatically bids on your behalf up to your maximum. The highest bidder wins. Real-time notifications keep you updated."},
]}
sideTitle="Frequently Asked Questions"
sideDescription="Everything you need to know about buying, selling, and bidding on AuctionHub."

View File

@@ -19,7 +19,6 @@ export default function HomePage() {
{ name: "Browse", id: "products" },
{ name: "Sell", id: "how-to-sell" },
{ name: "Categories", id: "categories" },
{ name: "NFTs", id: "nfts" },
{ name: "About", id: "about" },
];
@@ -77,7 +76,7 @@ export default function HomePage() {
<div id="hero" data-section="hero">
<HeroBillboardRotatedCarousel
title="Discover & Bid on Premium Auctions"
description="Luxury cars, exclusive watches, fine art, and NFTs all in one platform. Fast validation, transparent bidding, and secure transactions for collectors and enthusiasts."
description="Luxury cars, exclusive watches, fine art, and more all in one platform. Fast validation, transparent bidding, and secure transactions for collectors and enthusiasts."
tag="Youth-Focused Marketplace"
tagIcon={Zap}
tagAnimation="slide-up"
@@ -98,7 +97,7 @@ export default function HomePage() {
{
id: "carousel-3", imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709120.jpg?_wi=1", imageAlt: "Contemporary art exhibition"},
{
id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-inmersive-exhibition_23-2151428524.jpg", imageAlt: "NFT digital art showcase"},
id: "carousel-4", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-inmersive-exhibition_23-2151428524.jpg", imageAlt: "Digital art showcase"},
{
id: "carousel-5", imageSrc: "http://img.b2bpic.net/free-photo/people-antique-store-side-view_23-2149640716.jpg", imageAlt: "Luxury items collection"},
{
@@ -128,7 +127,7 @@ export default function HomePage() {
{
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=1", 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", 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", 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", imageAlt: "Classic collector car"},
{
@@ -163,7 +162,7 @@ export default function HomePage() {
<div id="categories" data-section="categories">
<SplitAbout
title="Multiple Categories, One Platform"
description="Whether you're buying or selling luxury vehicles, timepieces, fine art, or digital collectibles, AuctionHub connects you with the right community."
description="Whether you're buying or selling luxury vehicles, timepieces, fine art, or other collectibles, AuctionHub connects you with the right community."
tag="All Categories"
textboxLayout="default"
useInvertedBackground={false}
@@ -181,7 +180,7 @@ export default function HomePage() {
title: "Fine Art", description: "Contemporary, modern, and classic artwork curated and authenticated by art experts.", icon: Palette,
},
{
title: "Digital Collectibles", description: "NFTs, crypto art, and blockchain-based collectibles in a secure marketplace.", icon: Zap,
title: "Collectibles", description: "Vintage items, memorabilia, and rare collectibles in a secure marketplace.", icon: Zap,
},
]}
mediaAnimation="blur-reveal"
@@ -246,7 +245,7 @@ export default function HomePage() {
{
id: "3", name: "James Mitchell", role: "Art Dealer", testimonial: "Sold three pieces in the first month. The platform connects serious collectors worldwide. Fees are fair and payouts are fast.", imageSrc: "http://img.b2bpic.net/free-photo/successful-professional-sitting-office_1098-21006.jpg", imageAlt: "James Mitchell"},
{
id: "4", name: "Alex Park", role: "NFT Collector", testimonial: "Finally, a marketplace that treats digital art with the same respect as physical collectibles. The blockchain integration is seamless.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoors-business-man-smiles_23-2148763856.jpg", imageAlt: "Alex Park"},
id: "4", name: "Alex Park", role: "Collector", testimonial: "The platform treats all collectibles with equal respect and provides transparent bidding. Seamless experience from start to finish.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoors-business-man-smiles_23-2148763856.jpg", imageAlt: "Alex Park"},
{
id: "5", name: "Emma Thompson", role: "Luxury Seller", testimonial: "The interface is intuitive, the support team is responsive, and the bidding is competitive. I recommend AuctionHub to all my collector friends.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-mechanic-standing-with-arms-crossed_1170-2381.jpg", imageAlt: "Emma Thompson"},
{
@@ -272,9 +271,9 @@ export default function HomePage() {
{
id: "3", title: "How do I know items are authentic?", content: "All items are verified by certified experts in their respective categories. We stand behind authenticity with our guarantee program."},
{
id: "4", title: "Can I sell NFTs?", content: "Yes! We support blockchain-verified NFTs. Simply provide the contract address and token ID, and we handle the rest including smart contract integration."},
id: "4", title: "What items can I sell?", content: "We accept luxury vehicles, premium watches, fine art, vintage collectibles, and other high-value items. All items must pass our authentication process."},
{
id: "5", title: "What payment methods do you accept?", content: "We accept credit cards, bank transfers, cryptocurrency (Bitcoin, Ethereum), and digital wallets. All transactions are secured and insured."},
id: "5", title: "What payment methods do you accept?", content: "We accept credit cards, bank transfers, and digital wallets. All transactions are secured and insured."},
{
id: "6", title: "How do I bid and win?", content: "Register, set a proxy bid, and our system automatically bids on your behalf up to your maximum. The highest bidder wins. Real-time notifications keep you updated."},
]}
@@ -291,4 +290,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -31,7 +31,6 @@ export default function SellerPage() {
{ name: "Browse", id: "products" },
{ name: "Sell", id: "how-to-sell" },
{ name: "Categories", id: "categories" },
{ name: "NFTs", id: "nfts" },
{ name: "About", id: "about" },
]}
button={{
@@ -63,7 +62,7 @@ export default function SellerPage() {
<div id="categories" data-section="categories">
<SplitAbout
title="Multiple Categories, One Platform"
description="Whether you're buying or selling luxury vehicles, timepieces, fine art, or digital collectibles, AuctionHub connects you with the right community."
description="Whether you're buying or selling luxury vehicles, timepieces, fine art, or other collectibles, AuctionHub connects you with the right community."
tag="All Categories"
textboxLayout="default"
useInvertedBackground={false}
@@ -81,7 +80,7 @@ export default function SellerPage() {
title: "Fine Art", description: "Contemporary, modern, and classic artwork curated and authenticated by art experts.", icon: Palette,
},
{
title: "Digital Collectibles", description: "NFTs, crypto art, and blockchain-based collectibles in a secure marketplace.", icon: Zap,
title: "Collectibles", description: "Vintage items, memorabilia, and rare collectibles in a secure marketplace.", icon: Zap,
},
]}
mediaAnimation="none"
@@ -129,9 +128,9 @@ export default function SellerPage() {
{
id: "3", title: "How do I know my items will sell?", content: "Our platform reaches 47,000+ active buyers worldwide. We provide optimal pricing suggestions and marketing support to ensure your items get maximum visibility and competitive bidding."},
{
id: "4", title: "Can I sell NFTs?", content: "Yes! We support blockchain-verified NFTs. Simply provide the contract address and token ID, and we handle the rest including smart contract integration."},
id: "4", title: "What items can I sell?", content: "We accept luxury vehicles, premium watches, fine art, vintage collectibles, and other high-value items. All items must pass our authentication process."},
{
id: "5", title: "What payment methods do you offer?", content: "Sellers receive payments via bank transfer, cryptocurrency, or digital wallet. All transactions are secured and insured. Payouts typically process within 3-5 business days."},
id: "5", title: "What payment methods do you offer?", content: "Sellers receive payments via bank transfer or digital wallet. All transactions are secured and insured. Payouts typically process within 3-5 business days."},
{
id: "6", title: "What makes a successful seller?", content: "High-quality photos, accurate descriptions, competitive pricing, and responsive communication with buyers. We provide a seller guide with best practices to maximize your auction success."},
]}