links.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <!-- 🤫 😉 -->
  26. </div>
  27. </template>
  28. <style scoped>
  29. #credits {
  30. transform: translate(0,100%);
  31. color: #555;
  32. }
  33. </style>
  34. <script>
  35. export default {
  36. transition(to, from) {
  37. if (!from) return 'swoop-in'
  38. let routes = ['index', 'install', 'faq', 'donate', 'links']
  39. if (routes.indexOf(to.name) < 0) return 'swoop-out'
  40. if (routes.indexOf(from.name) < 0) return 'swoop-in'
  41. return routes.indexOf(to.name) > routes.indexOf(from.name) ? 'swoop-left' : 'swoop-right'
  42. },
  43. data() {
  44. return {
  45. githubLink: "https://github.com/Anarios/return-youtube-dislike",
  46. discordLink: "https://discord.gg/mYnESY4Md5",
  47. emailLink: "mailto:selivano.d@gmail.com "
  48. }
  49. }
  50. }
  51. </script>