diff --git a/front/src/app/aboutus/aboutus.component.css b/front/src/app/aboutus/aboutus.component.css new file mode 100644 index 0000000..e69de29 diff --git a/front/src/app/aboutus/aboutus.component.html b/front/src/app/aboutus/aboutus.component.html new file mode 100644 index 0000000..0c4d859 --- /dev/null +++ b/front/src/app/aboutus/aboutus.component.html @@ -0,0 +1 @@ +

aboutus works!

diff --git a/front/src/app/aboutus/aboutus.component.spec.ts b/front/src/app/aboutus/aboutus.component.spec.ts new file mode 100644 index 0000000..eeee02a --- /dev/null +++ b/front/src/app/aboutus/aboutus.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { AboutusComponent } from './aboutus.component'; + +describe('AboutusComponent', () => { + let component: AboutusComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [AboutusComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(AboutusComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/front/src/app/aboutus/aboutus.component.ts b/front/src/app/aboutus/aboutus.component.ts new file mode 100644 index 0000000..2c10a7b --- /dev/null +++ b/front/src/app/aboutus/aboutus.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-aboutus', + standalone: true, + imports: [], + templateUrl: './aboutus.component.html', + styleUrl: './aboutus.component.css' +}) +export class AboutusComponent { + +} diff --git a/front/src/app/home/home.component.css b/front/src/app/home/home.component.css new file mode 100644 index 0000000..e69de29 diff --git a/front/src/app/home/home.component.html b/front/src/app/home/home.component.html new file mode 100644 index 0000000..5f2c53f --- /dev/null +++ b/front/src/app/home/home.component.html @@ -0,0 +1 @@ +

home works!

diff --git a/front/src/app/home/home.component.spec.ts b/front/src/app/home/home.component.spec.ts new file mode 100644 index 0000000..60c47c4 --- /dev/null +++ b/front/src/app/home/home.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HomeComponent } from './home.component'; + +describe('HomeComponent', () => { + let component: HomeComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [HomeComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(HomeComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/front/src/app/home/home.component.ts b/front/src/app/home/home.component.ts new file mode 100644 index 0000000..deaec52 --- /dev/null +++ b/front/src/app/home/home.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-home', + standalone: true, + imports: [], + templateUrl: './home.component.html', + styleUrl: './home.component.css' +}) +export class HomeComponent { + +} diff --git a/front/src/app/layout/footer/footer.component.css b/front/src/app/layout/footer/footer.component.css new file mode 100644 index 0000000..e69de29 diff --git a/front/src/app/layout/footer/footer.component.html b/front/src/app/layout/footer/footer.component.html new file mode 100644 index 0000000..28c0d7d --- /dev/null +++ b/front/src/app/layout/footer/footer.component.html @@ -0,0 +1 @@ +

footer works!

diff --git a/front/src/app/layout/footer/footer.component.spec.ts b/front/src/app/layout/footer/footer.component.spec.ts new file mode 100644 index 0000000..4647de8 --- /dev/null +++ b/front/src/app/layout/footer/footer.component.spec.ts @@ -0,0 +1,23 @@ +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({ + imports: [FooterComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(FooterComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/front/src/app/layout/footer/footer.component.ts b/front/src/app/layout/footer/footer.component.ts new file mode 100644 index 0000000..e2d1a44 --- /dev/null +++ b/front/src/app/layout/footer/footer.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-footer', + standalone: true, + imports: [], + templateUrl: './footer.component.html', + styleUrl: './footer.component.css' +}) +export class FooterComponent { + +} diff --git a/front/src/app/layout/header/header.component.css b/front/src/app/layout/header/header.component.css new file mode 100644 index 0000000..e69de29 diff --git a/front/src/app/layout/header/header.component.html b/front/src/app/layout/header/header.component.html new file mode 100644 index 0000000..4f5a95d --- /dev/null +++ b/front/src/app/layout/header/header.component.html @@ -0,0 +1 @@ +

header works!

diff --git a/front/src/app/layout/header/header.component.spec.ts b/front/src/app/layout/header/header.component.spec.ts new file mode 100644 index 0000000..4ff21e8 --- /dev/null +++ b/front/src/app/layout/header/header.component.spec.ts @@ -0,0 +1,23 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { HeaderComponent } from './header.component'; + +describe('HeaderComponent', () => { + let component: HeaderComponent; + let fixture: ComponentFixture; + + beforeEach(async () => { + await TestBed.configureTestingModule({ + imports: [HeaderComponent] + }) + .compileComponents(); + + fixture = TestBed.createComponent(HeaderComponent); + component = fixture.componentInstance; + fixture.detectChanges(); + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); +}); diff --git a/front/src/app/layout/header/header.component.ts b/front/src/app/layout/header/header.component.ts new file mode 100644 index 0000000..f2f578b --- /dev/null +++ b/front/src/app/layout/header/header.component.ts @@ -0,0 +1,12 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-header', + standalone: true, + imports: [], + templateUrl: './header.component.html', + styleUrl: './header.component.css' +}) +export class HeaderComponent { + +}