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

links.vue « pages « Website - github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5042dfb53ec9a5a89335f125b7919ad561f9601 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<template>
  <div style="height: 100%">
    
    <h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1>
          
    <div style="color: #999">
      <p style="margin-bottom: 1em;">Links to the project and it's developers</p>
    </div>

    <v-btn class="mainAltButton" :href="githubLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
      Github
    </v-btn>

    <v-btn class="mainAltButton" :href="discordLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
      Discord
    </v-btn>

    <h1 style="margin-top: 1em;">Contact Me</h1>

    <v-btn class="mainAltButton" :href="emailLink" target="_blank">
      <v-icon style="margin-right: 0.5em;">mdi-email</v-icon>
      Email
    </v-btn>

    <p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990</p>

  </div>
</template>

<style scoped>
#credits {
  transform: translate(0,100%);
  color: #555;
}
</style>

<script>
export default {
  data() {
    return {
      githubLink: "https://github.com/Anarios/return-youtube-dislike",
      discordLink: "https://discord.gg/mYnESY4Md5",

      emailLink: "mailto:selivano.d@gmail.com "
    }
  }
}
</script>