Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 844bea1

Browse files
authored
Merge pull request #511 from kodadot/youtube-substack
adding youtube and substack link to footer
2 parents e87fa90 + b0a36e8 commit 844bea1

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

src/components/Footer.vue

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
33
<div class="container footer__wrapper">
44
<div class="icons">
55
<ul class="footer__list icons__list">
6+
<li class="icons__list-item">
7+
<a
8+
href="https://kodadot.substack.com"
9+
target="_blank"
10+
rel="noopener noreferrer"
11+
>
12+
<b-icon
13+
icon="envelope"
14+
size="is-small"
15+
>
16+
</b-icon>
17+
</a>
18+
</li>
619
<li class="icons__list-item">
720
<a
821
href="https://medium.com/kodadot"
@@ -73,6 +86,20 @@
7386
</b-icon>
7487
</a>
7588
</li>
89+
<li class="icons__list-item">
90+
<a
91+
href="https://www.youtube.com/channel/UCEULduld5NrqOL49k1KVjoA/"
92+
target="_blank"
93+
rel="noopener noreferrer"
94+
>
95+
<b-icon
96+
pack="fab"
97+
icon="youtube"
98+
size="is-medium"
99+
>
100+
</b-icon>
101+
</a>
102+
</li>
76103
</ul>
77104
</div>
78105
<ul class="footer__list">

src/icons.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ import {
4040
faFacebook, faFacebookMessenger,
4141
faTelegramPlane, faMedium, faWhatsapp,
4242
faPinterest, faWpexplorer, faDiscord,
43-
faRedditAlien
43+
faRedditAlien,
44+
faYoutube
4445
} from '@fortawesome/free-brands-svg-icons';
4546

4647
import { library, IconDefinition } from '@fortawesome/fontawesome-svg-core';
@@ -87,7 +88,9 @@ library.add(
8788
faPinterest, faMedium,
8889
faAngleLeft, faAngleRight,
8990
faReply, faThumbsUp, faThumbsDown,
90-
faExternalLinkSquareAlt
91+
faExternalLinkSquareAlt,
92+
faYoutube
93+
9194
);
9295

9396
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';

0 commit comments

Comments
 (0)