Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
<div>{{recipe.instructions}}</div>
</div> -->
<!-- <app-login></app-login> -->
<app-contact></app-contact>
<!-- <app-contact></app-contact> -->
<app-thankyou></app-thankyou>
<!-- <app-about></app-about> -->
4 changes: 3 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -24,7 +25,8 @@ const approutes: Routes = [
LoginComponent,
HeaderComponent,
AboutComponent,
ContactComponent
ContactComponent,
ThankyouComponent
],
imports: [
BrowserModule,
Expand Down
Empty file.
16 changes: 16 additions & 0 deletions src/app/components/thankyou/thankyou.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<app-header></app-header>
<div class="textArea">
<p>Thank you for your feedback!</p>
<p>Sublime Kitchen is committed to responding to each user in a timely manner.</p>
<p>If you do not hear back from us soon, like, say....I dunno.....3 weeks? Give or take?</p>
<p>Whatever, just don't like, try to submit more feedback.</p><br>
<p>Do you know how annoying that is? Like, we have lives. We don't just sit here all day</p>
<p>and read your dumb feedback. I swear to God, everyone thinks their complaint or compliment</p>
<p>is the most important, and if we don't get back to them soon enough, they're all -</p>
<p>"Oh, you didn't respond back, don't you care about your users?"</p><br>
<p>No, I don't care about no user! You don't pay me! Get off my back, this site is free!</p>
<p>You know damn well you don't watch the ads, so we don't even get paid half the time.</p>
<p>But that doesn't stop you from submitting your dumb recipe for boiled clams,</p>
<p>or whatever the hell it is you people are out there making.</p>
</div>
<button>Back</button>
25 changes: 25 additions & 0 deletions src/app/components/thankyou/thankyou.component.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ThankyouComponent } from './thankyou.component';

describe('ThankyouComponent', () => {
let component: ThankyouComponent;
let fixture: ComponentFixture<ThankyouComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ThankyouComponent ]
})
.compileComponents();
});

beforeEach(() => {
fixture = TestBed.createComponent(ThankyouComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
16 changes: 16 additions & 0 deletions src/app/components/thankyou/thankyou.component.ts
Original file line number Diff line number Diff line change
@@ -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 {
}

}