Before deploying

wanted to distribute tokens to team after deploying. How to do it?

In your contract constructor you normally mint the tokens and assign those to yourself.

_mint(msg.sender, initialSupply);

Instead you can just send different amounts to different addresses by changing the msg.sender to another address and the initialSupply with however much you can’t to give them.