gallery.vue 605 B

1234567891011121314151617181920212223
  1. <script setup lang="ts">
  2. useHead({
  3. title: 'Gallery — Nexa Gallery',
  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">
  11. <h1 class="text-5xl font-medium">
  12. Gallery
  13. </h1>
  14. <section class="p-5 bg-gray-100">
  15. <NuxtLink to="https://wallydice.com" target="_blank" class="">
  16. <h2 class="text-xl font-medium hover:underline">Wally Dice</h2>
  17. </NuxtLink>
  18. </section>
  19. </main>
  20. </template>