We will build your ERC721 contract based on the Openzeppelin contracts. Let's install Openzeppelin contracts for our foundry project:
forge install openzeppelin/openzeppelin-contracts
Foundry installs all dependencies as git submodules under the directory of "lib". And to make it easier to import the dependencies, let's create a remappings.txt file with the following contents:
openzeppelin-contracts=lib/openzeppelin-contracts
The remapping.txt file should be put in the project root directory (i.e., the directory that contains thefoundry.toml file. )
With the remappings.txt file above, we can import the ERC721 contract from Openzeppelin by the following import statement :