SectionTertiary.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <section class="relative bg-[url('/img/section_tertiary_bg.svg')] bg-cover py-16 lg:py-28 flex items-center justify-center px-4">
  3. <div class="relative z-10 lg:w-[525px] flex flex-col justify-center gap-10 lg:ml-10 xl:ml-20">
  4. <h2 class="lg:max-w-[452px] text-4xl md:text-[46px] lg:text-[50px] uppercase font-semibold text-gradient leading-tight">
  5. IMERSÃO IGUASSU ALLIANCE
  6. </h2>
  7. <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-1 gap-5 w-full">
  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="hidden lg:block relative lg:w-[580px] xl:w-[700px] lg:-ml-16 xl:-ml-30 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: "Coquetel 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>