1
0

donate.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <script setup lang="ts">
  2. useHead({
  3. title: `Donate — LibreScript`,
  4. meta: [
  5. { name: 'description', content: `Thank you SOOOOO much for your support!` }
  6. ],
  7. })
  8. /* Initialize stores. */
  9. import { useSystemStore } from '@/stores/system'
  10. const System = useSystemStore()
  11. // onMounted(() => {
  12. // console.log('Mounted!')
  13. // // Now it's safe to perform setup operations.
  14. // })
  15. // onBeforeUnmount(() => {
  16. // console.log('Before Unmount!')
  17. // // Now is the time to perform all cleanup operations.
  18. // })
  19. </script>
  20. <template>
  21. <Header />
  22. <main class="max-w-5xl mx-auto py-5 flex flex-col gap-4">
  23. <h1 class="text-5xl font-medium">
  24. Donate To LibreScript
  25. </h1>
  26. <p class="w-2/3">
  27. This has been a passion project of mine for as long as I can remember; and so your support is SOOOOO greatly appreciated!
  28. </p>
  29. <div class="grid grid-cols-2 gap-8">
  30. <ol class="flex flex-col gap-6">
  31. <li>
  32. <h3 class="font-bold tracking-widest uppercase">
  33. Bitcoin
  34. <span class="text-xs text-amber-600">segwit</span>
  35. </h3>
  36. </li>
  37. <li>
  38. <h3 class="font-bold tracking-widest uppercase">
  39. Bitcoin
  40. <span class="text-xs text-amber-600">classic</span>
  41. </h3>
  42. </li>
  43. <li>
  44. <h3 class="font-bold tracking-widest uppercase">
  45. Bitcoin
  46. <span class="text-xs text-amber-600">lightning</span>
  47. </h3>
  48. </li>
  49. <li>
  50. <h3 class="font-bold tracking-widest uppercase">
  51. Bitcoin Cash
  52. </h3>
  53. <NuxtLink to="" target="_blank" class="text-xs text-gray-500 italic hover:underline">
  54. bitcoincash:XXX
  55. </NuxtLink>
  56. </li>
  57. <li>
  58. <h3 class="font-bold tracking-widest uppercase">
  59. Nexa
  60. </h3>
  61. <NuxtLink to="https://explorer.nexa.org/address/nexa:nqtsq5g5wnltcdpm82g5t4rgxx3repxzpc5x6ceav5pqt9ty" target="_blank" class="text-xs text-gray-500 italic hover:underline">
  62. shomari.nexa
  63. <span class="block">nexa:nqtsq5g5wnltcdpm82g5t4rgxx3repxzpc5x6ceav5pqt9ty</span>
  64. </NuxtLink>
  65. </li>
  66. </ol>
  67. <ol class="flex flex-col gap-6">
  68. <li>
  69. <h3 class="font-bold tracking-widest uppercase">
  70. Avalanche
  71. </h3>
  72. <NuxtLink to="https://subnets.avax.network/c-chain/address/0x27a9b30DBe015842098F4CD31f0301a1cEE74bfe" target="_blank" class="text-xs text-gray-500 italic hover:underline">
  73. shomari.avax
  74. <span class="block">0x27a9b30DBe015842098F4CD31f0301a1cEE74bfe</span>
  75. </NuxtLink>
  76. </li>
  77. <li>Dash</li>
  78. <li>
  79. <h3 class="font-bold tracking-widest uppercase">
  80. Ethereum
  81. </h3>
  82. <NuxtLink to="https://etherscan.io/address/0x27a9b30DBe015842098F4CD31f0301a1cEE74bfe" target="_blank" class="text-xs text-gray-500 italic hover:underline">
  83. shomari.eth
  84. <span class="block">0x27a9b30DBe015842098F4CD31f0301a1cEE74bfe</span>
  85. </NuxtLink>
  86. </li>
  87. <li>Monero</li>
  88. <li>Zcash</li>
  89. </ol>
  90. </div>
  91. </main>
  92. <Footer />
  93. </template>