The site is more or less working. Some weirdness with animations though

This commit is contained in:
Cameron
2018-10-20 20:11:33 -04:00
parent c6f5c3d86e
commit 67c314924f
48 changed files with 1337 additions and 71 deletions

View File

@@ -1,16 +1,45 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import { AppComponent } from './app.component';
import {AppComponent} from './app.component';
import {MatSidenavModule, MatToolbarModule} from "@angular/material";
import {ToolbarComponent} from './toolbar/toolbar.component';
import {RouterModule, Routes} from "@angular/router";
import {ResumeComponent} from './resume/resume.component';
import {ContactComponent} from './contact/contact.component';
import {HomeComponent} from './home/home.component';
import {ProjectsComponent} from './projects/projects.component';
import {BrowserAnimationsModule} from "@angular/platform-browser/animations";
import { ProjectKeywordPipe } from './project-keyword.pipe';
const appRoutes: Routes = [
{path: 'resume', component: ResumeComponent, data: {state: 'resume'}},
{path: 'projects', component: ProjectsComponent, data: {state: 'project'}},
{path: 'contact', component: ContactComponent, data: {state: 'contact'}},
{path: 'home', component: HomeComponent, data: {state: 'home'}},
{path: '', pathMatch: 'full', redirectTo: 'home'}
];
@NgModule({
declarations: [
AppComponent
AppComponent,
ToolbarComponent,
ResumeComponent,
ContactComponent,
HomeComponent,
ProjectsComponent,
ProjectKeywordPipe,
],
imports: [
BrowserModule
RouterModule.forRoot(appRoutes),
BrowserModule,
BrowserAnimationsModule,
MatToolbarModule,
MatSidenavModule,
RouterModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
export class AppModule {
}