Landingpage Grid-layout erstellt, Navbar implementiert, SEO vorbereitet

This commit is contained in:
2026-02-23 20:52:45 +01:00
parent b6ca9be225
commit 2fdeb41c25
40 changed files with 646 additions and 79 deletions

View File

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