links.vue 1.5 KB

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