default.vue 325 B

123456789101112131415161718
  1. <script setup lang="ts">
  2. useHead({
  3. // title: 'Blank — Nexa Games',
  4. // meta: [
  5. // { name: 'description', content: 'Nexa Gaming offers a revolutionary blockchain experience.' }
  6. // ],
  7. })
  8. </script>
  9. <template>
  10. <Header />
  11. <main class="px-3">
  12. <slot />
  13. </main>
  14. <Footer />
  15. </template>