links.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div>
  3. <h1 style="font-size: 3em; margin-bottom: 0;">Project Links</h1>
  4. <div style="color: #999">
  5. <p style="margin-bottom: 1em;">Links to the project and it's developers</p>
  6. </div>
  7. <v-btn class="mainAltButton" :href="githubLink" target="_blank">
  8. <v-icon style="margin-right: 0.5em;">mdi-github</v-icon>
  9. Github
  10. </v-btn>
  11. <v-btn class="mainAltButton" :href="discordLink" target="_blank">
  12. <v-icon style="margin-right: 0.5em;">mdi-discord</v-icon>
  13. Discord
  14. </v-btn>
  15. <h1 style="margin-top: 1em;">Contact Me</h1>
  16. <v-btn class="mainAltButton" :href="emailLink" target="_blank">
  17. <v-icon style="margin-right: 0.5em;">mdi-email</v-icon>
  18. Email
  19. </v-btn>
  20. <p id="credits">Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990.</p>
  21. </div>
  22. </template>
  23. <style scoped>
  24. #credits {
  25. position: absolute;
  26. bottom: 0;
  27. left: 50%;
  28. transform: translate(-50%,0);
  29. color: #555;
  30. }
  31. </style>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. githubLink: "https://github.com/Anarios/return-youtube-dislike",
  37. discordLink: "https://discord.gg/mYnESY4Md5",
  38. emailLink: "mailto:selivano.d@gmail.com "
  39. }
  40. }
  41. }
  42. </script>