mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
Add github and btc address.
This commit is contained in:
parent
be78b037d4
commit
ad35531388
5 changed files with 31 additions and 1 deletions
15
src/App.vue
15
src/App.vue
|
@ -42,6 +42,21 @@
|
|||
</nav>
|
||||
|
||||
<router-view />
|
||||
|
||||
<div style="text-align: center">
|
||||
<a href="https://github.com/TeamPiped/Piped">
|
||||
<font-awesome-icon
|
||||
:icon="['fab', 'github']"
|
||||
></font-awesome-icon>
|
||||
</a>
|
||||
|
||||
<a href="bitcoin://13MoHioctZkC7LDSZSb4m32TDT8xNmei1p">
|
||||
<font-awesome-icon
|
||||
:icon="['fab', 'bitcoin']"
|
||||
></font-awesome-icon>
|
||||
13MoHioctZkC7LDSZSb4m32TDT8xNmei1p
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import { createApp } from 'vue'
|
||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||
import { faThumbsUp, faThumbsDown, faEye } from '@fortawesome/free-solid-svg-icons'
|
||||
import { faGithub, faBitcoin } from '@fortawesome/free-brands-svg-icons'
|
||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
|
||||
library.add(faThumbsUp, faThumbsDown, faEye)
|
||||
library.add(faThumbsUp, faThumbsDown, faEye, faGithub, faBitcoin)
|
||||
|
||||
import("uikit/src/less/uikit.less")
|
||||
import("uikit/dist/js/uikit.min.js")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue