Benefit.vue 2.4 KB

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