Benefit.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!--
  2. Section "Bénéfices" de la page du nos partenaires
  3. -->
  4. <template>
  5. <AnchoredSection id="benefits">
  6. <LayoutContainer>
  7. <v-row class="center-90">
  8. <LayoutUISubTitle> Les bénéfices </LayoutUISubTitle>
  9. <LayoutUITitle>
  10. Pourquoi rejoindre l'écosystème Opentalent ?
  11. </LayoutUITitle>
  12. </v-row>
  13. <v-row class="center-90 benefits">
  14. <v-col
  15. v-for="(benefit, index) in benefits"
  16. :key="index"
  17. cols="12"
  18. md="4"
  19. >
  20. <CommonCardBenefit :benefit="benefit" />
  21. </v-col>
  22. </v-row>
  23. <v-row class="center-90 benefits">
  24. <v-btn to="/nous-contacter" class="btn-contact">
  25. Devenir partenaire
  26. </v-btn>
  27. </v-row>
  28. </LayoutContainer>
  29. </AnchoredSection>
  30. </template>
  31. <script setup lang="ts">
  32. import type { Ref } from 'vue'
  33. import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
  34. import type { Benefit } from '~/types/interface'
  35. const benefits: Ref<Array<Benefit>> = ref([
  36. {
  37. title: 'Gagnez en visibilité',
  38. number: '01',
  39. description:
  40. "Accédez à un réseau d'écoles, d'associations et d'institutions culturelles à travers nos solutions.",
  41. image: '/images/pages/nos-partenaires/benefits/Gagnons_en_visibilite.webp',
  42. alt: 'Un paysage de ville avec des panneaux publicitaires',
  43. },
  44. {
  45. title: 'Partagez vos innovations',
  46. number: '02',
  47. description:
  48. 'Vos services seront intégrés à une plateforme utilisée quotidiennement par nos clients.',
  49. image:
  50. '/images/pages/nos-partenaires/benefits/Partageons_nos_innovations.webp',
  51. alt: "Plusieurs mains de personnes autour d'un ordinateur",
  52. },
  53. {
  54. title: 'Collaborez sur des projets impactants',
  55. number: '03',
  56. description:
  57. 'Contribuez à des initiatives qui soutiennent le développement culturel.',
  58. image:
  59. '/images/pages/nos-partenaires/benefits/Collaborons_ensemble_pour_la_culture.webp',
  60. alt: "Plusieurs personnes réunis autour d'une table",
  61. },
  62. ])
  63. </script>
  64. <style scoped lang="scss">
  65. .v-row {
  66. display: flex;
  67. flex-direction: row;
  68. justify-content: center;
  69. align-items: center;
  70. }
  71. .btn-contact {
  72. margin-top: 1rem;
  73. height: 53px;
  74. background: var(--secondary-color);
  75. border-radius: 6px;
  76. color: var(--on-secondary-color);
  77. padding: 19px 28px;
  78. gap: 9px;
  79. max-width: 90%;
  80. }
  81. </style>