From 110d40c03fccb3abc1970088b3dd15e073641e89 Mon Sep 17 00:00:00 2001 From: Kris Gesling Date: Wed, 19 Feb 2020 12:45:39 +0930 Subject: [PATCH] remove old social icons --- projects/globalnav/src/lib/footer/footer.component.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/projects/globalnav/src/lib/footer/footer.component.ts b/projects/globalnav/src/lib/footer/footer.component.ts index 8a682826..45f8d0d6 100644 --- a/projects/globalnav/src/lib/footer/footer.component.ts +++ b/projects/globalnav/src/lib/footer/footer.component.ts @@ -22,11 +22,9 @@ import { NavItem } from '../globalnav.service'; import { faFacebook, - faInstagram, + faGithub, faLinkedin, - faMedium, faReddit, - faTelegram, faTwitter, faYoutube, } from '@fortawesome/free-brands-svg-icons'; @@ -41,12 +39,10 @@ export class FooterComponent implements OnInit { public socialMediaIcons = [ {icon: faTwitter, url: 'https://twitter.com/mycroft_ai'}, {icon: faFacebook, url: 'https://www.facebook.com/aiforeveryone/'}, - {icon: faInstagram, url: 'https://www.instagram.com/mycroft_ai/'}, {icon: faYoutube, url: 'https://www.youtube.com/channel/UC1dlmB1lup9RwFQBSGnhA-g'}, - {icon: faTelegram, url: 'https://t.me/mycroft_ai'}, + {icon: faGithub, url: 'https://github.com/MycroftAI'}, {icon: faReddit, url: 'https://www.reddit.com/r/Mycroftai/'}, {icon: faLinkedin, url: 'https://www.linkedin.com/company/mycroft-a.i./'}, - {icon: faMedium, url: 'https://medium.com/@mycroftai'} ]; constructor() { }