+
setActiveTab('description')}
className={`px-4 py-3 text-sm font-medium transition-colors whitespace-nowrap ${activeTab === 'description'
@@ -263,7 +263,7 @@ const NftBid = () => {
{/* Page Content */}
-
diff --git a/app/(main)/auction/components/nft_collection_card_data.tsx b/app/(main)/auction/components/nft_collection_card_data.tsx
index 0f65842..fe7aa9b 100644
--- a/app/(main)/auction/components/nft_collection_card_data.tsx
+++ b/app/(main)/auction/components/nft_collection_card_data.tsx
@@ -82,7 +82,7 @@ const NFTCollectionSection = () => {
{/* If you want even larger cards, use this version */}
-
+
{nftCollectionData.map((nft) => (
))}
diff --git a/app/(main)/auction/components/nftcollectioncard.tsx b/app/(main)/auction/components/nftcollectioncard.tsx
index fc0267b..e1975ad 100644
--- a/app/(main)/auction/components/nftcollectioncard.tsx
+++ b/app/(main)/auction/components/nftcollectioncard.tsx
@@ -1,5 +1,6 @@
import React from 'react';
import Image from 'next/image';
+import { Heart } from 'lucide-react';
interface NFTCardData {
id: number;
@@ -20,7 +21,7 @@ interface NFTCollectionCardProps {
const NFTCollectionCard: React.FC
= ({ data }) => {
return (
-
+
@@ -32,23 +33,21 @@ const NFTCollectionCard: React.FC = ({ data }) => {
className="w-full h-full object-cover"
/>
-
{data.creator}
+
{data.creator}
{data.isVerified && (
-
+
)}
{/* Like button overlay */}
-
-
-
-
-
{data.likes}
+
+
+ {data.likes}
{/* NFT Image */}
-
+
= ({ data }) => {
{/* Card Content */}
-
+
{/* NFT Title */}
-
{data.title}
+
{data.title}
{/* Bid Info */}
-
-
-
Current Bid
+
+
+
Current Bid
{data.currentBid}
-
-
{data.bidCount} bids
+
+
{data.bidCount} bids
{data.timeLeft}
diff --git a/app/(main)/auction/components/pages/description.tsx b/app/(main)/auction/components/pages/description.tsx
index a042e8c..a18a519 100644
--- a/app/(main)/auction/components/pages/description.tsx
+++ b/app/(main)/auction/components/pages/description.tsx
@@ -57,7 +57,7 @@ const DescriptionPage = () => {
return (
-
+
About This Asset
The pink-blackened horned knight is an embodiment of peace, unity and
@@ -70,7 +70,7 @@ const DescriptionPage = () => {
About This Collection
Collection by
-
+
x0023y...yrte
diff --git a/app/(main)/auction/page.tsx b/app/(main)/auction/page.tsx
index b966c61..f72d60e 100644
--- a/app/(main)/auction/page.tsx
+++ b/app/(main)/auction/page.tsx
@@ -3,7 +3,7 @@ import NFTCollectionSection from "./components/nft_collection_card_data";
const AuctionPage = () => {
return (
-