1
0

faq.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <main class="">
  3. <div class="max-w-7xl mx-auto py-12 px-4 divide-y divide-gray-200 sm:px-6 lg:py-16 lg:px-8">
  4. <div class="mt-8">
  5. <dl class="divide-y divide-gray-200">
  6. <div class="pt-6 pb-8 md:grid md:grid-cols-12 md:gap-8">
  7. <dt class="text-base font-medium text-gray-900 md:col-span-5">
  8. How do I setup my own Bitcoin testnet?
  9. </dt>
  10. <dd class="mt-2 md:mt-0 md:col-span-7">
  11. <p class="text-base text-gray-500">
  12. There are several options available to get started with a local testnet.
  13. </p>
  14. <p class="text-base text-gray-500">
  15. PandaCash offers a instant Regtest node for easily testing new applications.
  16. </p>
  17. <p class="text-base text-gray-500">
  18. APECS offers several popular sandboxes (BCH, sBCH, BSC, ETH) in our Workspaces area.
  19. </p>
  20. </dd>
  21. </div>
  22. <!-- More questions... -->
  23. </dl>
  24. </div>
  25. </div>
  26. </main>
  27. </template>
  28. <script>
  29. export default {
  30. data: () => ({
  31. title: null,
  32. description: null,
  33. }),
  34. head: () => ({
  35. title: 'FAQ — APECS Dev',
  36. meta: [
  37. {
  38. hid: 'description', // `vmid` for it as it will not work
  39. name: 'description',
  40. content: 'Frequently Asked Questions'
  41. }
  42. ]
  43. }),
  44. created: function () {
  45. /* Set page title. */
  46. this.title = `Frequently Asked Questions`
  47. /* Set page description. */
  48. this.description = `We know you have lots of questions, so we've collected <span class="text-gray-100 font-medium">TOP DEVS</span> from all over crypto to give you the right answers.`
  49. },
  50. mounted: function () {
  51. //
  52. },
  53. }
  54. </script>