Fix footer at page bottom.

This commit is contained in:
Florian THIERRY
2024-06-12 12:38:42 +02:00
parent 1e18e3bc52
commit 78325c8729
8 changed files with 92 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
import { MatIconModule } from '@angular/material/icon';
import { RouterModule } from '@angular/router';
@Component({
selector: 'app-footer',
standalone: true,
imports: [MatIconModule, RouterModule],
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'
})
export class FooterComponent {
}