index.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <script setup lang="ts">
  2. useHead({
  3. title: `Support Center — Hush Your Money`,
  4. meta: [
  5. { name: 'description', content: `Hush Your Money makes spending safu.` }
  6. ],
  7. })
  8. /* Initialize stores. */
  9. import { useSystemStore } from '@/stores/system'
  10. const System = useSystemStore()
  11. const faqs = []
  12. faqs.push({
  13. question: 'How do I setup my Wallet?',
  14. answer: 'Very carefully, please!',
  15. isShowing: false,
  16. })
  17. // onMounted(() => {
  18. // console.log('Mounted!')
  19. // // Now it's safe to perform setup operations.
  20. // })
  21. // onBeforeUnmount(() => {
  22. // console.log('Before Unmount!')
  23. // // Now is the time to perform all cleanup operations.
  24. // })
  25. </script>
  26. <template>
  27. <main class="flex flex-col gap-4">
  28. <h1 class="text-sky-500 text-5xl font-light italic">
  29. Support Center
  30. </h1>
  31. <p>
  32. While Bitcoin is considered to be a privacy-oriented system, the blockchain is open to analyze by anyone, and there are numerous transaction tracing tools like Chainalysis, Coinfirm, Elliptic, CipherTrace, and Crystal.
  33. They're all not free, and Bitcoin users rarely have a chance to see how deep the rabbit hole goes.
  34. <strong>We start with a simple transaction scoring tool, and will soon expand this even further.</strong>
  35. We'll provide this service for free as we hope it'd help Bitcoin users to take some of their privacy back.
  36. </p>
  37. <h4>ROADMAP</h4>
  38. <ol>
  39. <li>Full transaction history</li>
  40. </ol>
  41. <p>
  42. The rapid evolution of the cryptocurrency industry continues to hold the attention of governments and regulators worldwide.
  43. Cypherpunks' dream of free and independent payment methods seems be a notion from light years ago.
  44. Here and now have to deal with the harsh reality.
  45. <strong>The regulation of cryptocurrencies is following suit of how the bank industry is being controlled.</strong>
  46. </p>
  47. <hr />
  48. <h2 class="text-gray-500 text-4xl font-bold">
  49. Guides and Tutorials
  50. </h2>
  51. <NuxtLink to="/help/bch/wallet-integration" class="text-blue-500 text-xl font-medium hover:text-blue-400 hover:underline">
  52. Bitcoin Cash Wallet Integration
  53. </NuxtLink>
  54. <section class="bg-white">
  55. <div class="mx-auto max-w-7xl px-6 py-24 sm:py-32 lg:px-8 lg:py-40">
  56. <div class="mx-auto max-w-4xl divide-y divide-gray-900/10">
  57. <h2 class="text-2xl font-bold leading-10 tracking-tight text-gray-900">Frequently asked questions</h2>
  58. <dl class="mt-10 space-y-6 divide-y divide-gray-900/10">
  59. <div v-for="faq of faqs" :key="faq.question" class="pt-6">
  60. <dt>
  61. <!-- Expand/collapse question button -->
  62. <button type="button" class="flex w-full items-start justify-between text-left text-gray-900" aria-controls="faq-0" aria-expanded="false">
  63. <span class="text-base font-semibold leading-7">{{faq.question}}</span>
  64. <span class="ml-6 flex h-7 items-center">
  65. <!--
  66. Icon when question is collapsed.
  67. Item expanded: "hidden", Item collapsed: ""
  68. -->
  69. <svg class="hidden h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  70. <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v12m6-6H6" />
  71. </svg>
  72. <!--
  73. Icon when question is expanded.
  74. Item expanded: "", Item collapsed: "hidden"
  75. -->
  76. <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  77. <path stroke-linecap="round" stroke-linejoin="round" d="M18 12H6" />
  78. </svg>
  79. </span>
  80. </button>
  81. </dt>
  82. <dd class="mt-2 pr-12" id="faq-0">
  83. <p class="text-base leading-7 text-gray-600">{{faq.answer}}</p>
  84. </dd>
  85. </div>
  86. <div class="pt-6">
  87. <dt>
  88. <!-- Expand/collapse question button -->
  89. <button type="button" class="flex w-full items-start justify-between text-left text-gray-900" aria-controls="faq-0" aria-expanded="false">
  90. <span class="text-base font-semibold leading-7">What&#039;s the best thing about Switzerland?</span>
  91. <span class="ml-6 flex h-7 items-center">
  92. <!--
  93. Icon when question is collapsed.
  94. Item expanded: "hidden", Item collapsed: ""
  95. -->
  96. <svg class="hidden h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  97. <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v12m6-6H6" />
  98. </svg>
  99. <!--
  100. Icon when question is expanded.
  101. Item expanded: "", Item collapsed: "hidden"
  102. -->
  103. <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  104. <path stroke-linecap="round" stroke-linejoin="round" d="M18 12H6" />
  105. </svg>
  106. </span>
  107. </button>
  108. </dt>
  109. <dd class="mt-2 pr-12" id="faq-0">
  110. <p class="text-base leading-7 text-gray-600">I don&#039;t know, but the flag is a big plus. Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas cupiditate laboriosam fugiat.</p>
  111. </dd>
  112. </div>
  113. <div class="pt-6">
  114. <dt>
  115. <!-- Expand/collapse question button -->
  116. <button type="button" class="flex w-full items-start justify-between text-left text-gray-900" aria-controls="faq-0" aria-expanded="false">
  117. <span class="text-base font-semibold leading-7">How do you make holy water?</span>
  118. <span class="ml-6 flex h-7 items-center">
  119. <!--
  120. Icon when question is collapsed.
  121. Item expanded: "hidden", Item collapsed: ""
  122. -->
  123. <svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  124. <path stroke-linecap="round" stroke-linejoin="round" d="M12 6v12m6-6H6" />
  125. </svg>
  126. <!--
  127. Icon when question is expanded.
  128. Item expanded: "", Item collapsed: "hidden"
  129. -->
  130. <svg class="hidden h-6 w-6" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" aria-hidden="true">
  131. <path stroke-linecap="round" stroke-linejoin="round" d="M18 12H6" />
  132. </svg>
  133. </span>
  134. </button>
  135. </dt>
  136. <dd class="hidden mt-2 pr-12" id="faq-0">
  137. <p class="text-base leading-7 text-gray-600">You boil the hell out of it. Lorem ipsum dolor sit amet consectetur adipisicing elit. Magnam aut tempora vitae odio inventore fuga aliquam nostrum quod porro. Delectus quia facere id sequi expedita natus.</p>
  138. </dd>
  139. </div>
  140. <!-- More questions... -->
  141. </dl>
  142. </div>
  143. </div>
  144. </section>
  145. </main>
  146. </template>