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

donate.vue « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b5125e91a9ae5b4e76f18a2adab3dda0f839215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
  <div>
    
    <h1 style="font-size: 3em; margin-bottom: 0em;">Donate</h1>
    <p style="color: #999; margin-bottom: 3em;">You can support our efforts to keep the internet free with a donation!</p>
    <v-btn class="mainAltButton" :href="patreonLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-patreon</v-icon>
      Patreon
    </v-btn>
    <v-btn class="mainAltButton" :to="yoomoneyLink">
      <v-icon style="margin-right: 0.5em;">mdi-cash-multiple</v-icon>
      Yoomoney
    </v-btn>

  </div>
</template>

<script>
  export default {
    data: () => ({
      patreonLink: "https://www.patreon.com/returnyoutubedislike",
      yoomoneyLink: "/pay/yoomoney"
    }),
  
  }
</script>