Refactor footer and home components; update image formats and improve text descriptions

This commit is contained in:
Lechner Julian
2025-07-04 08:29:56 +02:00
parent c15abe3e97
commit c0dca3879b
8 changed files with 19 additions and 26 deletions
+6 -6
View File
@@ -1,23 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import {ComponentFixture, TestBed} from '@angular/core/testing';
import { FooterComponent } from './footer.component';
import {FooterComponent} from './footer.component';
describe('FooterComponent', () => {
describe('FooterComponent', (): void => {
let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>;
beforeEach(async () => {
beforeEach(async (): Promise<void> => {
await TestBed.configureTestingModule({
imports: [FooterComponent]
})
.compileComponents();
.compileComponents();
fixture = TestBed.createComponent(FooterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
it('should create', (): void => {
expect(component).toBeTruthy();
});
});