The shell is still telling you that you have not entirely setup the Zsh shell yet. However, the first thing I would remove would be that homebrew eval statement in your ~/.zshrc file. I have been using the homebrew package manager for several years and at no time has there ever been that eval statement present, which is invoking the shellenv commands that are exploding on you…
Next, I would manually enter the following in the Terminal if it is an Intel MacBook Air:
export PATH=".:/usr/local/bin:${PATH}"
and the following (accounting for the /opt installation locale for homebrew) on an Apple Silicon Mac:
export PATH=".:/usr/local/bin:/opt/homebrew/bin:${PATH}"
Now, finish setting up the default Zsh shell (your admin password will not echo here):
sudo chsh -s /bin/zsh
Then, you create a new ~/.zshrc file with the PATH and PS1 prompts by copy/pasting the following HERE script into the Terminal and then pressing return to run it.
<<"EOF" > ~/.zshrc
export PATH=".:/usr/local/bin:${PATH}"
PS1="%m: %~ %% "
EOF
and once that is done, enter the following command:
source ~/.zshrc
Each time that you launch the Terminal, it will read that ~/.zshrc file.