Added contact form (Closes #3)
This commit is contained in:
parent
3e5841769d
commit
7c398632f7
@ -30,3 +30,35 @@ import {ConsoleComponent} from './components/console/console.component';
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
import {BrowserModule} from '@angular/platform-browser';
|
||||
import {NgModule} from '@angular/core';
|
||||
import {ContactFormComponent} from './components/contact-form/contact-form.component';
|
||||
import {HomeComponent} from './views/home/home.component';
|
||||
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
|
||||
import {MaterialModule} from './material.module';
|
||||
import {FormsModule} from '@angular/forms';
|
||||
import {TypewriterComponent} from './components/typewriter/typewriter.component';
|
||||
import {SlideShowComponent} from './components/slideShow/slideShow.component';
|
||||
import {AppComponent} from './views/app/app.component';
|
||||
import {AppRouting} from './app.routing';
|
||||
import {ConsoleComponent} from './components/console/console.component';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent,
|
||||
ConsoleComponent,
|
||||
ContactFormComponent,
|
||||
HomeComponent,
|
||||
SlideShowComponent,
|
||||
TypewriterComponent
|
||||
],
|
||||
imports: [
|
||||
AppRouting,
|
||||
BrowserModule,
|
||||
BrowserAnimationsModule,
|
||||
FormsModule,
|
||||
MaterialModule,
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule { }
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
@include mat.core();
|
||||
|
||||
$zakscode-primary: mat.define-palette(mat.$indigo-palette);
|
||||
$zakscode-primary: mat.define-palette(mat.$blue-palette, 900);
|
||||
$zakscode-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
||||
$zakscode-warn: mat.define-palette(mat.$red-palette);
|
||||
$zakscode-theme: mat.define-light-theme((
|
||||
|
Loading…
Reference in New Issue
Block a user