diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/(marketplace)/direct-listings/ContractDirectListingsPage.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/(marketplace)/direct-listings/ContractDirectListingsPage.tsx index b542aa8ffd4..4ca2669c5c5 100644 --- a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/(marketplace)/direct-listings/ContractDirectListingsPage.tsx +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/(marketplace)/direct-listings/ContractDirectListingsPage.tsx @@ -17,7 +17,9 @@ export const ContractDirectListingsPage: React.FC< return (
-

Contract Listings

+

+ Direct Listings +

-

Contract Auctions

+

+ English Auctions +

- diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/ContractNFTPage.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/ContractNFTPage.tsx index 9ba7ca862d0..53585231a54 100644 --- a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/ContractNFTPage.tsx +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/ContractNFTPage.tsx @@ -60,7 +60,7 @@ export const ContractNFTPage: React.FC = ({ return (
-

Contract NFTs

+

NFTs

{isRevealable && ( diff --git a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/components/supply-cards.tsx b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/components/supply-cards.tsx index 9be19e6a58a..0d0da49dcf6 100644 --- a/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/components/supply-cards.tsx +++ b/apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/components/supply-cards.tsx @@ -7,7 +7,7 @@ import { totalSupply, } from "thirdweb/extensions/erc721"; import { useReadContract } from "thirdweb/react"; -import { Stat } from "../../overview/components/stat-card"; +import { StatCard } from "../../overview/components/stat-card"; interface SupplyCardsProps { contract: ThirdwebContract; @@ -35,18 +35,18 @@ export const SupplyCards: React.FC = ({ contract }) => { ); return ( -
- + - - = ({ publishedBy, }) => { return ( -
+
= ({ } return ( - <> -
-

- Direct Listing +
+
+

+ Direct Listings

- - View all -> - + + View all + +
- - + +
+ +
+
); }; @@ -142,28 +153,36 @@ const EnglishAuctionCards: React.FC = ({ } return ( - <> -
-

+
+
+

English Auctions

- - View all -> - + + View all + +
- - +
+ +
+
); }; @@ -261,12 +280,16 @@ const ListingCards: React.FC = ({ const englishAuctionsHref = `/${chainSlug}/${contractAddress}/english-auctions`; return ( -
+
{listings.map((listing, index) => (
+ {/* border */} +
+ + {/* image */}
{/* Image */} = ({ /> )} + {/* seller */} (
-

Seller

+

Seller

)} /> + {/* price */} {!isPending && ( {/* header */}
-

NFT Details

+

NFTs

);