NFT browser in the website

Hi, I am wondering if it is possible to add to the Clone Rarible project a simple browser in order to look for the name of any nft in my website. I donā€™t know where to start.
Any helpfull links or videos would be appreciated.
Many thanks

pd: I also need to get better how the website looks. Any videos or helpfull links for ā€œupgradingā€ my frontend?

You may be able to use Moralis.Web3API.token.searchNFTs:

const options = { q: "Pancake", chain: "bsc", filter: "name" };
const NFTs = await Moralis.Web3API.token.searchNFTs(options);

https://docs.moralis.io/moralis-server/web3-sdk/token#searchnfts

Or if you have that data already saved in your current Moralis server db then you could also search directly into what you already have in your local Moralis server database.