diff --git a/src/app/app.component.html b/src/app/app.component.html index 65987d4..315377a 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -4,5 +4,6 @@
{{recipe.instructions}}
--> - + + diff --git a/src/app/app.module.ts b/src/app/app.module.ts index fc2abd0..8ad42c3 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -11,6 +11,7 @@ import { HeaderComponent } from './components/header/header.component'; import { RouterModule, Routes } from '@angular/router'; import { AboutComponent } from './components/about/about.component'; import { ContactComponent } from './components/contact/contact.component'; +import { ThankyouComponent } from './components/thankyou/thankyou.component'; const approutes: Routes = [ {path: '', component: AppComponent} @@ -24,7 +25,8 @@ const approutes: Routes = [ LoginComponent, HeaderComponent, AboutComponent, - ContactComponent + ContactComponent, + ThankyouComponent ], imports: [ BrowserModule, diff --git a/src/app/components/thankyou/thankyou.component.css b/src/app/components/thankyou/thankyou.component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/thankyou/thankyou.component.html b/src/app/components/thankyou/thankyou.component.html new file mode 100644 index 0000000..f4e6932 --- /dev/null +++ b/src/app/components/thankyou/thankyou.component.html @@ -0,0 +1,16 @@ + +
+

Thank you for your feedback!

+

Sublime Kitchen is committed to responding to each user in a timely manner.

+

If you do not hear back from us soon, like, say....I dunno.....3 weeks? Give or take?

+

Whatever, just don't like, try to submit more feedback.


+

Do you know how annoying that is? Like, we have lives. We don't just sit here all day

+

and read your dumb feedback. I swear to God, everyone thinks their complaint or compliment

+

is the most important, and if we don't get back to them soon enough, they're all -

+

"Oh, you didn't respond back, don't you care about your users?"


+

No, I don't care about no user! You don't pay me! Get off my back, this site is free!

+

You know damn well you don't watch the ads, so we don't even get paid half the time.

+

But that doesn't stop you from submitting your dumb recipe for boiled clams,

+

or whatever the hell it is you people are out there making.

+
+ \ No newline at end of file diff --git a/src/app/components/thankyou/thankyou.component.spec.ts b/src/app/components/thankyou/thankyou.component.spec.ts new file mode 100644 index 0000000..ffc0e72 --- /dev/null +++ b/src/app/components/thankyou/thankyou.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ThankyouComponent } from './thankyou.component'; + +describe('ThankyouComponent', () => { + let component: ThankyouComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ ThankyouComponent ] + }) + .compileComponents(); + }); + + beforeEach(() => { + fixture = TestBed.createComponent(ThankyouComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/thankyou/thankyou.component.ts b/src/app/components/thankyou/thankyou.component.ts new file mode 100644 index 0000000..e25786d --- /dev/null +++ b/src/app/components/thankyou/thankyou.component.ts @@ -0,0 +1,16 @@ +import { Component, OnInit } from '@angular/core'; +import { HeaderComponent } from '../header/header.component'; + +@Component({ + selector: 'app-thankyou', + templateUrl: './thankyou.component.html', + styleUrls: ['./thankyou.component.css'] +}) +export class ThankyouComponent implements OnInit { + + constructor() { } + + ngOnInit(): void { + } + +}