44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
import { BrowserModule } from '@angular/platform-browser';
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
|
|
import { MatSidenavModule } from "@angular/material/sidenav";
|
|
import { MatButtonModule } from "@angular/material/button";
|
|
import { MatIconModule } from "@angular/material/icon";
|
|
import { MatTooltipModule } from "@angular/material/tooltip";
|
|
import { MatCardModule } from "@angular/material/card";
|
|
import { MatGridListModule } from "@angular/material/grid-list";
|
|
|
|
import { StartComponent } from './components/start/start.component';
|
|
import { ProjectsComponent } from './components/projects/projects.component';
|
|
import { CertificatesComponent } from './components/certificates/certificates.component';
|
|
import { SkillsComponent } from './components/skills/skills.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AppComponent,
|
|
StartComponent,
|
|
ProjectsComponent,
|
|
CertificatesComponent,
|
|
SkillsComponent
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
AppRoutingModule,
|
|
BrowserAnimationsModule,
|
|
MatSidenavModule,
|
|
MatButtonModule,
|
|
MatIconModule,
|
|
MatTooltipModule,
|
|
MatCardModule,
|
|
MatGridListModule
|
|
],
|
|
providers: [],
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule { }
|