Minting multiple NFTs at once

I’ve found like one tutorial showing how to create a minter dapp, and it only shows how to mint one NFT at a time. Would someone have an example on how to create a minter dapp that lets users mint like 10 NFTs at a time?

Thank you

you can create new entry function in the nft package that fit your requirement

or using programable tx to batch call minting function: Sui Programmable Transaction Blocks with the TS SDK | Sui Docs

Thank you, will check it out!