There's a lot of talk about how "angular is not SEO friendly", or has "slower performance" than other frameworks. Well let me introduce you to Angular Server-side rendering (SSR)
It's really easy to enable SSR in Angular in a new project just simply run
ng new --ssr
To add it to an existing project run
ng add @angular/ssr
This will add a couple files to your project, for example "server.ts" in the root directory. This file is where the magic happens, and uses express which nodejs can then fire off your app server side. Having this will help with things like performance to SEO.
Find more on Angular Server-side rendering (SSR)