Props for the <NFT> component
<NFT>
type NFTProviderProps = { contract: ThirdwebContract; tokenId: bigint;};
The NFT contract address. Accepts both ERC721 and ERC1155 contracts
type contract = ThirdwebContract;
The tokenId whose info you want to display
type tokenId = bigint;