Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitrii Selivanov <selivano.d@gmail.com>2021-12-15 03:10:33 +0300
committerDmitrii Selivanov <selivano.d@gmail.com>2021-12-15 03:10:33 +0300
commit3cb09e6fd26afc7a94f99741349e5522ea18ba92 (patch)
tree3d11e51e3c1bba7b427f11f3f70e62fc560533b6 /Website/pages/index.vue
parent2b7ef364ff4368461420c472118d6f5dea5e0774 (diff)
Old extensions removed, sponsors added to website
Diffstat (limited to 'Website/pages/index.vue')
-rw-r--r--Website/pages/index.vue16
1 files changed, 15 insertions, 1 deletions
diff --git a/Website/pages/index.vue b/Website/pages/index.vue
index 7e6f098..bbb0444 100644
--- a/Website/pages/index.vue
+++ b/Website/pages/index.vue
@@ -27,11 +27,19 @@
<v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
Discord
</v-btn>
-
+ <div id="sponsors">
+ <h3>Sponsors:</h3>
+ <p v-for="sponsor in sponsors" style="margin: 0px 0px ">
+ <a :href="sponsor.link">{{sponsor.name}}</a>
+ </p>
+ </div>
</div>
</template>
<style scoped>
+#sponsors {
+ margin-top: 200px;
+}
#thumbslogo {
opacity: 0;
fill: transparent;
@@ -129,6 +137,12 @@ export default {
installLink: "/install",
githubLink: "https://github.com/Anarios/return-youtube-dislike",
discordLink: "https://discord.gg/mYnESY4Md5",
+ sponsors: [
+ {name: "Piepacker", link: "https://piepacker.com/" },
+ {name: "nodetube", link: "https://github.com/mayeaux/nodetube"},
+ {name: "trig404"},
+ {name: "Peter33"}
+ ]
}
}
}