makers.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <script setup lang="ts">
  2. useHead({
  3. title: 'Gamemakers — 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 flex flex-col gap-4">
  11. <h1 class="text-5xl font-medium">
  12. Gamemakers
  13. </h1>
  14. <p>
  15. Build a consistent monetization system directly into your game(s).
  16. </p>
  17. <section>
  18. <h2 class="text-2xl font-medium">
  19. Build a Game from Scratch
  20. </h2>
  21. <pre class="my-3 w-fit px-10 py-5 text-lg font-mono font-medium bg-gray-200 border-2 border-gray-400 rounded-lg shadow">dev@workspace: <span class="font-bold">npm create nexa</span></pre>
  22. <NuxtLink to="https://docs.nexa.games/maker/build-a-game-from-scratch" target="_blank" class="text-blue-500 font-medium hover:underline">
  23. https://docs.nexa.games/maker/build-a-game-from-scratch
  24. </NuxtLink>
  25. </section>
  26. </main>
  27. </template>