diff --git a/Frontend/src/app/app.module.ts b/Frontend/src/app/app.module.ts
index 36cf7c8..83b30d8 100644
--- a/Frontend/src/app/app.module.ts
+++ b/Frontend/src/app/app.module.ts
@@ -7,13 +7,15 @@ import {AppRouting} from './app.routing';
import {ProductListComponent} from './product-list/product-list.component';
import { LandingpageComponent } from './landingpage/landingpage.component';
import { ProductDetailPageComponent } from './product-detail-page/product-detail-page.component';
+import { FooterComponent } from './footer/footer.component';
@NgModule({
declarations: [
AppComponent,
ProductListComponent,
LandingpageComponent,
- ProductDetailPageComponent
+ ProductDetailPageComponent,
+ FooterComponent
],
imports: [
BrowserModule,
diff --git a/Frontend/src/app/footer/footer.component.css b/Frontend/src/app/footer/footer.component.css
new file mode 100644
index 0000000..e25c62c
--- /dev/null
+++ b/Frontend/src/app/footer/footer.component.css
@@ -0,0 +1,3 @@
+.container{
+ text-align: center;
+}
diff --git a/Frontend/src/app/footer/footer.component.html b/Frontend/src/app/footer/footer.component.html
new file mode 100644
index 0000000..aa19043
--- /dev/null
+++ b/Frontend/src/app/footer/footer.component.html
@@ -0,0 +1,7 @@
+
+
+
diff --git a/Frontend/src/app/footer/footer.component.spec.ts b/Frontend/src/app/footer/footer.component.spec.ts
new file mode 100644
index 0000000..a3c4af9
--- /dev/null
+++ b/Frontend/src/app/footer/footer.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { FooterComponent } from './footer.component';
+
+describe('FooterComponent', () => {
+ let component: FooterComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ FooterComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(FooterComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/Frontend/src/app/footer/footer.component.ts b/Frontend/src/app/footer/footer.component.ts
new file mode 100644
index 0000000..a10f2a4
--- /dev/null
+++ b/Frontend/src/app/footer/footer.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-footer',
+ templateUrl: './footer.component.html',
+ styleUrls: ['./footer.component.css']
+})
+export class FooterComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}