index.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <script setup>
  2. const cosette = await $fetch('/api/cosette')
  3. </script>
  4. <template>
  5. <section class="bg-white py-8">
  6. <Upload />
  7. <div class="container mx-auto flex items-center flex-wrap pt-4 pb-12">
  8. <nav id="store" class="w-full z-30 top-0 px-6 py-1">
  9. <div class="w-full container mx-auto flex flex-wrap items-center justify-between mt-0 px-2 py-3">
  10. <a class="uppercase tracking-wide no-underline hover:no-underline font-bold text-yellow text-xl " href="https://it.hackmeeting.org">Hackmeeting 0x19</a>
  11. <div class="flex items-center" id="store-nav-content">
  12. <a class="pl-3 inline-block no-underline hover:text-black modal-button" href="#my-modal">
  13. <Icon-ic:baseline-add/>
  14. </a>
  15. <a class="pl-3 inline-block no-underline hover:text-black" href="#">
  16. <svg class="fill-current hover:text-black" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  17. <path d="M10,18c1.846,0,3.543-0.635,4.897-1.688l4.396,4.396l1.414-1.414l-4.396-4.396C17.365,13.543,18,11.846,18,10 c0-4.411-3.589-8-8-8s-8,3.589-8,8S5.589,18,10,18z M10,4c3.309,0,6,2.691,6,6s-2.691,6-6,6s-6-2.691-6-6S6.691,4,10,4z" />
  18. </svg>
  19. </a>
  20. </div>
  21. </div>
  22. </nav>
  23. <Cosetta v-for='cosetta in cosette' :key='cosetta.id' :cosetta='cosetta' />
  24. </div>
  25. </section>
  26. </template>