donate.vue 919 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <div>
  3. <section style="position: relative;">
  4. <div class="center">
  5. <center>
  6. <h1 style="font-size: 3em; margin-bottom: 0em;">Donate</h1>
  7. <p style="color: #999; margin-bottom: 3em;">You can support our efforts to keep the internet free with a donation!</p>
  8. <v-btn class="mainAltButton" :href="patreonLink" target="_blank">
  9. <v-icon style="margin-right: 0.5em;">mdi-patreon</v-icon>
  10. Patreon
  11. </v-btn>
  12. <v-btn class="mainAltButton" :to="yoomoneyLink">
  13. <v-icon style="margin-right: 0.5em;">mdi-cash-multiple</v-icon>
  14. Yoomoney
  15. </v-btn>
  16. </center>
  17. </div>
  18. </section>
  19. </div>
  20. </template>
  21. <script>
  22. export default {
  23. data: () => ({
  24. patreonLink: "https://www.patreon.com/returnyoutubedislike",
  25. yoomoneyLink: "/pay/yoomoney"
  26. }),
  27. }
  28. </script>