You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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 { }
|