Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
<div class="container footer__wrapper">
<div class="icons">
<ul class="footer__list icons__list">
<li class="icons__list-item">
<a
href="https://kodadot.substack.com"
target="_blank"
rel="noopener noreferrer"
>
<b-icon
icon="envelope"
size="is-small"
>
</b-icon>
</a>
</li>
<li class="icons__list-item">
<a
href="https://medium.com/kodadot"
Expand Down Expand Up @@ -73,6 +86,20 @@
</b-icon>
</a>
</li>
<li class="icons__list-item">
<a
href="https://www.youtube.com/channel/UCEULduld5NrqOL49k1KVjoA/"
target="_blank"
rel="noopener noreferrer"
>
<b-icon
pack="fab"
icon="youtube"
size="is-medium"
>
</b-icon>
</a>
</li>
</ul>
</div>
<ul class="footer__list">
Expand Down
7 changes: 5 additions & 2 deletions src/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ import {
faFacebook, faFacebookMessenger,
faTelegramPlane, faMedium, faWhatsapp,
faPinterest, faWpexplorer, faDiscord,
faRedditAlien
faRedditAlien,
faYoutube
} from '@fortawesome/free-brands-svg-icons';

import { library, IconDefinition } from '@fortawesome/fontawesome-svg-core';
Expand Down Expand Up @@ -87,7 +88,9 @@ library.add(
faPinterest, faMedium,
faAngleLeft, faAngleRight,
faReply, faThumbsUp, faThumbsDown,
faExternalLinkSquareAlt
faExternalLinkSquareAlt,
faYoutube

);

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