launchpad.vue 723 B

123456789101112131415161718192021222324252627282930
  1. <script setup lang="ts">
  2. /* Initialize stores. */
  3. import { useSystemStore } from '@/stores/system'
  4. /* Initialize System. */
  5. const System = useSystemStore()
  6. useHead({
  7. title: 'Launchpad — Nexa Games',
  8. meta: [
  9. { name: 'description', content: 'Nexa Gaming offers a revolutionary blockchain experience.' }
  10. ],
  11. })
  12. </script>
  13. <template>
  14. <main class="max-w-5xl mx-auto my-10">
  15. <h1 class="text-5xl font-medium">
  16. Launchpad
  17. </h1>
  18. <p>
  19. Are you ready to monetize your game?
  20. </p>
  21. <p>
  22. Nexa Gaming Engine (NGE) is a permissionless and provably fair wagering system, powered by the Nexa blockchain.
  23. </p>
  24. </main>
  25. </template>