import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { NgParticlesModule } from "ng-particles"; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { HeaderComponent } from './header/header.component'; import { AppLayoutComponent } from './app-layout/app-layout.component'; import { AboutComponent } from './about/about.component'; import { PortfolioComponent } from './portfolio/portfolio.component'; import { ExhibitionsComponent } from './exhibitions/exhibitions.component'; import { InstallationsComponent } from './installations/installations.component'; import { EntertainmentComponent } from './entertainment/entertainment.component'; import { PerformancesComponent } from './performances/performances.component'; import { WorkshopsComponent } from './workshops/workshops.component'; @NgModule({ declarations: [ AppComponent, HeaderComponent, AppLayoutComponent, AboutComponent, PortfolioComponent, ExhibitionsComponent, InstallationsComponent, EntertainmentComponent, PerformancesComponent, WorkshopsComponent ], imports: [ BrowserModule, AppRoutingModule, NgParticlesModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { }