links.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div style="height: 100%">
  3. <h1 class="title-text" >Project Links</h1>
  4. <div style="color: #999">
  5. <p style="margin-top: .5rem; margin-bottom: 1rem;">Links to the project and its 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" class="flex-row no-wrap">
  21. Site by <v-icon color="#555">mdi-discord</v-icon> Front#2990
  22. <br>
  23. <span style="color: #444; font-size: 0.75rem">& <v-icon color="#333" size="1rem">mdi-discord</v-icon> PickleNik#0864</span>
  24. </p>
  25. </div>
  26. </template>
  27. <style scoped>
  28. #credits {
  29. transform: translate(0,100%);
  30. color: #555;
  31. }
  32. </style>
  33. <script>
  34. export default {
  35. transition(to, from) {
  36. if (!from) return 'swoop-in'
  37. let routes = ['index', 'install', 'faq', 'donate', 'links']
  38. if (routes.indexOf(to.name) < 0) return 'swoop-out'
  39. if (routes.indexOf(from.name) < 0) return 'swoop-in'
  40. return routes.indexOf(to.name) > routes.indexOf(from.name) ? 'swoop-left' : 'swoop-right'
  41. },
  42. data() {
  43. return {
  44. githubLink: "https://github.com/Anarios/return-youtube-dislike",
  45. discordLink: "https://discord.gg/mYnESY4Md5",
  46. emailLink: "mailto:selivano.d@gmail.com "
  47. }
  48. }
  49. }
  50. </script>