Implementa Footer
This commit is contained in:
16
src/app/footer/footer.component.ts
Normal file
16
src/app/footer/footer.component.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user