Add localization

Add pages
This commit is contained in:
Marc Fokkert
2024-05-29 21:07:46 +02:00
parent 416e6c96de
commit 4357d4f5c7
24 changed files with 423 additions and 93 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LandingPageComponent } from './landing-page.component';
describe('LandingPageComponent', () => {
let component: LandingPageComponent;
let fixture: ComponentFixture<LandingPageComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [LandingPageComponent]
})
.compileComponents();
fixture = TestBed.createComponent(LandingPageComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});