Solutions.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <div id="solutions">
  3. <LayoutContainer>
  4. <v-row>
  5. <v-col cols="12">
  6. <h4 class="solution-title text-center">
  7. Ces solutions peuvent vous intéresser
  8. </h4>
  9. </v-col>
  10. </v-row>
  11. <v-row class="row-artist">
  12. <v-col cols="3">
  13. <v-img
  14. src="/images/opentalent_artist_black.png"
  15. class="logo"
  16. />
  17. </v-col>
  18. <v-col cols="2">
  19. <h5 class="solution-name">
  20. Opentalent Artist
  21. </h5>
  22. </v-col>
  23. <v-col cols="7">
  24. <!-- list v-chip-->
  25. <v-chip-group
  26. active-class="primary--text"
  27. column
  28. >
  29. <v-chip
  30. class="ma-2 chip-custom"
  31. label
  32. >
  33. <span class="chip-detail">Agenda</span>
  34. </v-chip>
  35. <v-chip
  36. class="ma-2 chip-custom"
  37. label
  38. >
  39. <span class="chip-detail">Facturation</span>
  40. </v-chip>
  41. <v-chip
  42. class="ma-2 chip-custom"
  43. label
  44. >
  45. <span class="chip-detail">Comptabilité</span>
  46. </v-chip>
  47. <v-chip
  48. class="ma-2 chip-custom"
  49. label
  50. >
  51. <span class="chip-detail">Communication</span>
  52. </v-chip>
  53. <v-chip
  54. class="ma-2 chip-custom"
  55. label
  56. >
  57. <span class="chip-detail">Site internet</span>
  58. </v-chip>
  59. </v-chip-group>
  60. </v-col>
  61. </v-row>
  62. <v-row class="row-artist">
  63. <v-col cols="3">
  64. <v-img
  65. src="/images/opentalent_manager_black.jpg"
  66. class="logo"
  67. />
  68. </v-col>
  69. <v-col cols="2">
  70. <h5 class="solution-name">
  71. Opentalent Manager
  72. </h5>
  73. </v-col>
  74. <v-col cols="7">
  75. <!-- list v-chip-->
  76. <v-chip-group
  77. active-class="primary--text"
  78. column
  79. >
  80. <v-chip
  81. class="ma-2 chip-custom"
  82. color="primary"
  83. label
  84. >
  85. <span class="chip-detail">Agenda</span>
  86. </v-chip>
  87. <v-chip
  88. class="ma-2 chip-custom"
  89. color="primary"
  90. label
  91. >
  92. <span class="chip-detail">Facturation</span>
  93. </v-chip>
  94. <v-chip
  95. class="ma-2 chip-custom"
  96. color="primary"
  97. label
  98. >
  99. <span class="chip-detail">Comptabilité</span>
  100. </v-chip>
  101. <v-chip
  102. class="ma-2 chip-custom"
  103. color="primary"
  104. label
  105. >
  106. <span class="chip-detail">Communication</span>
  107. </v-chip>
  108. <v-chip
  109. class="ma-2 chip-custom"
  110. color="primary"
  111. label
  112. >
  113. <span class="chip-detail">Site internet</span>
  114. </v-chip>
  115. </v-chip-group>
  116. </v-col>
  117. </v-row>
  118. </LayoutContainer>
  119. </div>
  120. </template>
  121. <script setup></script>
  122. <style scoped>
  123. .chip-detail {
  124. color: #000000;
  125. }
  126. .chip-custom {
  127. color: white;
  128. border: 1px solid #0e2d32;
  129. border-radius: 3rem;
  130. text-transform: uppercase;
  131. font-family: "Barlow";
  132. font-style: normal;
  133. font-weight: 500;
  134. font-size: 14px;
  135. line-height: 16px;
  136. display: flex;
  137. align-items: center;
  138. text-align: center;
  139. letter-spacing: 0.2em;
  140. }
  141. .row-artist {
  142. border-top: 1px solid #d1cdc7;
  143. margin-left: 2rem;
  144. margin-right: 2rem;
  145. }
  146. .solution-name {
  147. font-family: "Barlow";
  148. font-style: normal;
  149. font-weight: 300;
  150. font-size: 1.5rem;
  151. line-height: 1.5rem;
  152. color: #0e2d32;
  153. }
  154. .row-artist {
  155. display: flex;
  156. flex-direction: row;
  157. align-items: center;
  158. }
  159. .solution-title {
  160. font-family: "Barlow";
  161. font-style: normal;
  162. font-weight: 500;
  163. font-size: 1.5rem;
  164. line-height: 1.5rem;
  165. color: #000000;
  166. margin-top: 2rem;
  167. margin-bottom: 2rem;
  168. text-align: center;
  169. }
  170. .logo {
  171. width: 10rem;
  172. height: 10rem;
  173. margin-left: 2rem;
  174. margin-right: 2rem;
  175. }
  176. </style>