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
|
@ -47,6 +47,12 @@ The documentation can be found at https://piped-docs.kavin.rocks (accessible via
|
|||
![Screenshot 2](https://cloudflare-ipfs.com/ipfs/bafybeiaxhsog7jzydr7xb3xhlemxilqksceqg5fraaiuojzclhocsqrcvq)
|
||||
![Screenshot 3](https://cloudflare-ipfs.com/ipfs/bafybeiehs5xjqmmq34gmewxoqm3j3b2ze3pve4sdmanz7ukrxwgrcmxnry)
|
||||
|
||||
## Donations
|
||||
|
||||
Donations can be made at 13MoHioctZkC7LDSZSb4m32TDT8xNmei1p (BTC)
|
||||
|
||||
Contributions in any other form are also welcomed.
|
||||
|
||||
## Development Setup
|
||||
|
||||
```
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@fortawesome/fontawesome-svg-core": "^1.2.35",
|
||||
"@fortawesome/free-brands-svg-icons": "^5.15.3",
|
||||
"@fortawesome/free-solid-svg-icons": "^5.15.3",
|
||||
"@fortawesome/vue-fontawesome": "^3.0.0-2",
|
||||
"core-js": "^3.9.1",
|
||||
|
|
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")
|
||||
|
|
|
@ -891,6 +891,13 @@
|
|||
dependencies:
|
||||
"@fortawesome/fontawesome-common-types" "^0.2.35"
|
||||
|
||||
"@fortawesome/free-brands-svg-icons@^5.15.3":
|
||||
version "5.15.3"
|
||||
resolved "https://registry.yarnpkg.com/@fortawesome/free-brands-svg-icons/-/free-brands-svg-icons-5.15.3.tgz#bec2821d23b9c667be1d192a6c5bfb2667e588eb"
|
||||
integrity sha512-1hirPcbjj72ZJtFvdnXGPbAbpn3Ox6mH3g5STbANFp3vGSiE5u5ingAKV06mK6ZVqNYxUPlh4DlTnaIvLtF2kw==
|
||||
dependencies:
|
||||
"@fortawesome/fontawesome-common-types" "^0.2.35"
|
||||
|
||||
"@fortawesome/free-solid-svg-icons@^5.15.3":
|
||||
version "5.15.3"
|
||||
resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.15.3.tgz#52eebe354f60dc77e0bde934ffc5c75ffd04f9d8"
|
||||
|
|
Loading…
Reference in a new issue