bankers.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <script setup lang="ts">
  2. useHead({
  3. title: 'Bankers — Nexa Games',
  4. meta: [
  5. { name: 'description', content: 'Nexa Gaming offers a revolutionary blockchain experience.' }
  6. ],
  7. })
  8. </script>
  9. <template>
  10. <main class="max-w-5xl mx-auto my-10 space-y-5">
  11. <h1 class="text-5xl font-medium">
  12. Bankers
  13. </h1>
  14. <p>
  15. Bankers provide the capital that backs each and every Play made between platform participants.
  16. </p>
  17. <div class="grid grid-cols-2 gap-4">
  18. <section class="px-3 py-2 flex flex-col gap-3 bg-gradient-to-r from-gray-200 to-gray-300 border-2 border-gray-500 rounded-lg shadow-md">
  19. <h2 class="text-3xl font-medium">
  20. Governors
  21. </h2>
  22. <p>
  23. The top class of NFT offered in the Banking sector of Nexa Games.
  24. </p>
  25. <ol class="pl-10 list-disc">
  26. <li>Up to 12 members per game</li>
  27. <li>Premium revenue share/opportunities</li>
  28. <li>2X to 10X voting rights</li>
  29. </ol>
  30. </section>
  31. <section class="px-3 py-2 flex flex-col gap-3 bg-gradient-to-r from-gray-200 to-gray-300 border-2 border-gray-500 rounded-lg shadow-md">
  32. <h2 class="text-3xl font-medium">
  33. Treasurers
  34. </h2>
  35. <p>
  36. The standard class of NFT offered in the Banking sector of Nexa Games.
  37. </p>
  38. <ol class="pl-10 list-disc">
  39. <li>Up to 88 members per game</li>
  40. <li>Standard revenue share/opportunities</li>
  41. <li>Single voting rights</li>
  42. </ol>
  43. </section>
  44. </div>
  45. </main>
  46. </template>