Task - Routing
- Create a new component called
home
underforms
directory. - Give our home page some styling and template (static or dynamic).
- Lazily route
home
component. - Similarly, create a 404 page for our application when none of the route matches.
Wildcard route for a 404 page is { path: '**', component: PageNotFoundComponent }