diff --git a/src/app/app.component.html b/src/app/app.component.html index 09a2e25..d3cbf4b 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,3 +1,5 @@ - \ No newline at end of file + + + \ No newline at end of file diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 4dc35da..20ad0a2 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -10,23 +10,25 @@ import { HeaderComponent } from './components/header/header.component'; import { ProfilComponent } from './components/profil/profil.component'; import { ConnexionComponent } from './components/connexion/connexion.component'; import { InscriptionComponent } from './components/inscription/inscription.component'; +import { FooterComponent } from './components/footer/footer.component'; @NgModule({ declarations: [ AppComponent, HeaderComponent, + FooterComponent, ProfilComponent, ConnexionComponent, - InscriptionComponent + InscriptionComponent, ], imports: [ BrowserModule, AppRoutingModule, FormsModule, HttpClientModule, - IonicModule.forRoot() + IonicModule.forRoot(), ], providers: [], - bootstrap: [AppComponent] + bootstrap: [AppComponent], }) -export class AppModule { } +export class AppModule {} diff --git a/src/app/components/footer/footer.component.html b/src/app/components/footer/footer.component.html new file mode 100644 index 0000000..a79b7a6 --- /dev/null +++ b/src/app/components/footer/footer.component.html @@ -0,0 +1,52 @@ + \ No newline at end of file diff --git a/src/app/components/footer/footer.component.scss b/src/app/components/footer/footer.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/components/footer/footer.component.spec.ts b/src/app/components/footer/footer.component.spec.ts new file mode 100644 index 0000000..cfe4fbe --- /dev/null +++ b/src/app/components/footer/footer.component.spec.ts @@ -0,0 +1,21 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HeaderComponent } from './footer.component'; + +describe('HeaderComponent', () => { + let component: HeaderComponent; + let fixture: ComponentFixture; + + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [HeaderComponent] + }); + fixture = TestBed.createComponent(HeaderComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/src/app/components/footer/footer.component.ts b/src/app/components/footer/footer.component.ts new file mode 100644 index 0000000..8ea7023 --- /dev/null +++ b/src/app/components/footer/footer.component.ts @@ -0,0 +1,8 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-footer', + templateUrl: './footer.component.html', + styleUrls: ['./footer.component.scss'], +}) +export class FooterComponent {}