Could you please update the instructions and code sample at [https://github.com/RaphaelJenni/FirebaseUI-Angular?tab=readme-ov-file#how-to-use](https://github.com/RaphaelJenni/FirebaseUI-Angular?tab=readme-ov-file#how-to-use) to use [standalone components](https://blog.angular.dev/introducing-angular-v17-4d7033312e4b#586d) instead of, or in addition to, NgModules? And I believe it would be helpful to add filenames at the beginning of each code block like it is done at [https://angular.dev/reference/migrations/standalone#convert-declarations-to-standalone](https://angular.dev/reference/migrations/standalone#convert-declarations-to-standalone): How to use: 1. Using NgModules ```typescript // ./app/app.module.ts ... ``` 2. Using standalone components ```typescript // ./app/app.component.ts ... ``` ```typescript // ./main.ts ... ```