SectionTertiary.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <section class="relative bg-[url('img/section_tertiary_bg.svg')] bg-cover py-28 flex items-center justify-center overflow-hidden">
  3. <div class="relative z-10 w-[525px] flex flex-col justify-center gap-10 ml-24">
  4. <h2 class="max-w-[452px] text-[50px] uppercase font-semibold text-gradient leading-tight">
  5. Imersão Ciudad del Este
  6. </h2>
  7. <div class="flex flex-col gap-5">
  8. <SectionTertiaryCard
  9. v-for="(card, index) in cards" :key="index"
  10. :title="card.title"
  11. :description="card.description"
  12. />
  13. </div>
  14. </div>
  15. <NuxtImg
  16. src="/img/hexagons_photos.png"
  17. width="1000"
  18. class="relative -ml-45 z-0"
  19. />
  20. </section>
  21. </template>
  22. <script setup lang="ts">
  23. const cards = [
  24. {
  25. title: "2 Dias de Imersão Intensiva:",
  26. description: "Vivência prática nos centros de decisão"
  27. },
  28. {
  29. title: "Visitas Técnicas Estratégicas:",
  30. description: "Galpões, indústrias e infraestrutura logística."
  31. },
  32. {
  33. title: "Networking de Alto Nível:",
  34. description: "Jantares e reuniões com empresários locais"
  35. },
  36. {
  37. title: "Roadmap de Expansão: ",
  38. description: "Você sai com a clareza necessária para abrir sua operação e reduzir custos operacionais."
  39. },
  40. ];
  41. </script>