TODO
Here are multiple tasks for developers at each level of proficiency in Angular:
https://stackblitz.com/@Sebastian-G/collections/angular-workshop
Lazy Loading Modules​
Implement lazy loading for a feature module in a large-scale Angular application. Optimize the application's performance by loading modules on-demand.
Advanced Routing and Guards​
Implement route guards to secure certain routes in the application. Create an authentication guard that restricts access to authenticated users only.
Advanced Component Communication​
Implement a complex parent-child component interaction scenario using techniques like
<ng-content>
and ViewChild. Demonstrate effective communication patterns between components.