Basic footer component. TODO: finish footer component

This commit is contained in:
Marta Borgia Leiva 2026-02-09 21:52:04 +01:00
parent 4e5be55079
commit 3ee36a2e89
Signed by: a-mayb3
GPG key ID: 293AAC4FED165CE3
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,12 @@
.footer {
padding: 24px 16px;
text-align: center;
color: #6b7280;
background-color: #f5f7fa;
border-top: 1px solid #e5e7eb;
}
.footer p {
margin: 0;
font-size: 14px;
}

View file

@ -0,0 +1,3 @@
<footer class="footer">
<p>KanbanCloneAngular</p>
</footer>

View file

@ -0,0 +1,11 @@
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'app-footer',
standalone: true,
imports: [CommonModule],
templateUrl: './footer.component.html',
styleUrl: './footer.component.css'
})
export class FooterComponent {}