import { BrowserModule, Title } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { AboutComponent } from './about.component'; import { HomeComponent } from './home.component'; @NgModule({ declarations: [ AppComponent, AboutComponent, HomeComponent ], imports: [ BrowserModule, AppRoutingModule ], providers: [ Title ], bootstrap: [AppComponent] }) export class AppModule { }