Implementa Footer

This commit is contained in:
2023-10-13 10:48:45 -03:00
parent d7a710b87f
commit 3e22599ebb
6 changed files with 98 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
import {Component} from '@angular/core';
import {faGithub, faLinkedinIn, faTwitter} from "@fortawesome/free-brands-svg-icons";
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.css']
})
export class FooterComponent {
_githubIcon = faGithub;
_twitterIcon = faTwitter;
_linkedinIcon = faLinkedinIn;
}