-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Several UI improvements, first version of a user profile
- Loading branch information
Showing
18 changed files
with
787 additions
and
635 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
packages/nextjs/app/marketplace/_components/marketplaceDescription.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
export const MarketplaceDescription = () => { | ||
return ( | ||
<div className="self-center md:w-full collapse bg-base-300"> | ||
<input type="checkbox" /> | ||
<div className="collapse-title text-center text-xl font-medium"> | ||
New to NFT Marketplaces? <strong className="text-green-500">Click here!</strong> | ||
</div> | ||
<div className="collapse-content"> | ||
{/* Responsive 2-column layout, becomes 1 column on small screens */} | ||
<div className="grid grid-cols-1 md:grid-cols-2 gap-2 text-center"> | ||
{/* Left column: Green highlights */} | ||
<div className="flex flex-col"> | ||
<p> | ||
NFTs, or Non-Fungible Tokens,{" "} | ||
<strong className="text-green-600">represent ownership of a piece of content or art</strong>. | ||
<br /> | ||
Collectors can <strong className="text-green-600">mint or trade each piece</strong> of a NFT collection. | ||
</p> | ||
<p> | ||
NFTs allow artists to <strong className="text-green-600">earn royalties</strong> each time their work is | ||
resold. | ||
<br /> | ||
This gives artists continuous <strong className="text-green-600">income beyond the first sale</strong>. | ||
</p> | ||
</div> | ||
|
||
{/* Right column: Yellow highlights */} | ||
<div className="flex flex-col"> | ||
<p> | ||
Collectors can <strong className="text-green-600">mint</strong> or{" "} | ||
<strong className="text-red-600">trade</strong> each piece of a NFT collection. | ||
<br /> | ||
Minting means <strong className="text-green-600"> | ||
creating and owning a new piece of a collection | ||
</strong>{" "} | ||
which <strong className="text-red-600">is tradeable</strong> | ||
</p> | ||
<p> | ||
You can choose <strong className="text-green-600">to mint an NFT of a collection</strong> (if still | ||
available) | ||
<br /> | ||
<span> | ||
or <strong className="text-red-600">buy an NFT</strong> that was minted by someone else. | ||
</span> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
Oops, something went wrong.