bank.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <main class="w-screen h-screen bg-yellow-50 flex flex-col justify-between overflow-x-hidden">
  3. <Banner />
  4. <Header class="hidden" />
  5. <section class="flex flex-col gap-4">
  6. <h1 class="text-5xl font-medium">
  7. Bank
  8. </h1>
  9. <p>
  10. Bankers can expect to receive an average of 1% from the 3% House Edge.
  11. </p>
  12. <p>
  13. Your NEXA is held in a multi-sig contract that YOU hold the keys for.
  14. You can withdraw your coins AT ANY TIME.
  15. </p>
  16. <h3 class="block text-3xl">
  17. Total Game Bank is
  18. <span class="block text-rose-500 font-medium">
  19. 120,006.93914 NEXA
  20. <span class="block text-xl">US$184.81</span>
  21. </span>
  22. </h3>
  23. </section>
  24. <Footer />
  25. </main>
  26. </template>
  27. <script>
  28. export default {
  29. data: () => ({
  30. //
  31. }),
  32. computed: {
  33. //
  34. },
  35. methods: {
  36. //
  37. },
  38. created: function () {
  39. //
  40. },
  41. mounted: function () {
  42. //
  43. },
  44. }
  45. </script>