remove reviews section as we plan to integrate testimonials into the case studies
This commit is contained in:
parent
e41d0f50ce
commit
134e2ee9c4
|
@ -4,7 +4,6 @@
|
||||||
<app-about-us></app-about-us>
|
<app-about-us></app-about-us>
|
||||||
<!--<div class="content"></div>-->
|
<!--<div class="content"></div>-->
|
||||||
<app-case-studies></app-case-studies>
|
<app-case-studies></app-case-studies>
|
||||||
<app-reviews></app-reviews>
|
|
||||||
<app-contact-us></app-contact-us>
|
<app-contact-us></app-contact-us>
|
||||||
<app-footer></app-footer>
|
<app-footer></app-footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -17,7 +17,6 @@ import { ContactUsComponent } from './contact-us/contact-us.component';
|
||||||
import { FooterComponent } from './footer/footer.component';
|
import { FooterComponent } from './footer/footer.component';
|
||||||
import { HeaderComponent } from './header/header.component';
|
import { HeaderComponent } from './header/header.component';
|
||||||
import { MenuComponent } from './menu/menu.component';
|
import { MenuComponent } from './menu/menu.component';
|
||||||
import { ReviewsComponent } from './reviews/reviews.component';
|
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
declarations: [
|
declarations: [
|
||||||
|
@ -27,8 +26,7 @@ import { ReviewsComponent } from './reviews/reviews.component';
|
||||||
ContactUsComponent,
|
ContactUsComponent,
|
||||||
FooterComponent,
|
FooterComponent,
|
||||||
HeaderComponent,
|
HeaderComponent,
|
||||||
MenuComponent,
|
MenuComponent
|
||||||
ReviewsComponent
|
|
||||||
],
|
],
|
||||||
imports: [
|
imports: [
|
||||||
BrowserModule,
|
BrowserModule,
|
||||||
|
|
|
@ -21,12 +21,6 @@
|
||||||
>
|
>
|
||||||
<span>CASE STUDIES</span>
|
<span>CASE STUDIES</span>
|
||||||
</button>
|
</button>
|
||||||
<button
|
|
||||||
mat-menu-item
|
|
||||||
(click)="scroll('reviews')"
|
|
||||||
>
|
|
||||||
<span>WHAT PEOPLE SAY</span>
|
|
||||||
</button>
|
|
||||||
<button
|
<button
|
||||||
mat-menu-item
|
mat-menu-item
|
||||||
(click)="scroll('contact-us')"
|
(click)="scroll('contact-us')"
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
<div
|
|
||||||
class="reviews"
|
|
||||||
id="reviews"
|
|
||||||
>
|
|
||||||
<h1>WHAT PEOPLE SAY</h1>
|
|
||||||
</div>
|
|
|
@ -1,5 +0,0 @@
|
||||||
.reviews {
|
|
||||||
background-image: url("../../assets/images/staunton_old_map.jpg");
|
|
||||||
background-size: cover;
|
|
||||||
min-height: 400px;
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
||||||
|
|
||||||
import { ReviewsComponent } from './reviews.component';
|
|
||||||
|
|
||||||
describe('ReviewsComponent', () => {
|
|
||||||
let component: ReviewsComponent;
|
|
||||||
let fixture: ComponentFixture<ReviewsComponent>;
|
|
||||||
|
|
||||||
beforeEach(async(() => {
|
|
||||||
TestBed.configureTestingModule({
|
|
||||||
declarations: [ ReviewsComponent ]
|
|
||||||
})
|
|
||||||
.compileComponents();
|
|
||||||
}));
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
fixture = TestBed.createComponent(ReviewsComponent);
|
|
||||||
component = fixture.componentInstance;
|
|
||||||
fixture.detectChanges();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create', () => {
|
|
||||||
expect(component).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
|
@ -1,15 +0,0 @@
|
||||||
import { Component, OnInit } from '@angular/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector: 'app-reviews',
|
|
||||||
templateUrl: './reviews.component.html',
|
|
||||||
styleUrls: ['./reviews.component.scss']
|
|
||||||
})
|
|
||||||
export class ReviewsComponent implements OnInit {
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
|
|
||||||
ngOnInit() {
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue