import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-footer', templateUrl: './footer.component.html', styleUrls: ['./footer.component.css'] }) export class FooterComponent implements OnInit { sandkasten_logo!: string; ngOnInit(): void { this.sandkasten_logo = 'assets/img/logo.png'; } }