Footer.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. <template>
  2. <footer ref="footerElement">
  3. <LayoutContainer>
  4. <!-- <div
  5. v-if="lgAndUp"
  6. class="activities"
  7. >
  8. <v-row>
  9. <v-col cols="4">
  10. <v-img
  11. class="logo logo-jaune"
  12. src="/images/OpenTalent_LogoNoir_Jaune_white.png"
  13. />
  14. <small class="text-logo-jaune">
  15. Orchestres, chorales, danse, théatre, cirque</small>
  16. </v-col>
  17. <v-col cols="3">
  18. <v-img
  19. class="logo logo-rouge"
  20. src="/images/OpenTalent_LogoNoir_rouge_manager_white.png"
  21. />
  22. <small class="text-logo-rouge">Fédérations, confédérations, collectivités</small>
  23. </v-col>
  24. <v-col cols="4">
  25. <v-img
  26. class="logo logo-bleu"
  27. src="/images/logo_school_white.png"
  28. />
  29. <small class="text-logo-bleu">Tous les établissements d'enseignement artistique</small>
  30. </v-col>
  31. </v-row>
  32. </div> -->
  33. <div class="footer">
  34. <div class="content-footer">
  35. <v-row>
  36. <v-col
  37. :cols="smAndDown ? 12 : 3"
  38. :class="smAndDown ? 'logo-opentalent-sm' : ''"
  39. >
  40. <v-img
  41. class="logo"
  42. src="/images/Logo-blanc.png"
  43. width="294px"
  44. height="49px"
  45. />
  46. </v-col>
  47. <v-col
  48. :cols="smAndDown ? 6 : 2"
  49. :class="smAndDown ? 'link-sm' : ''"
  50. >
  51. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  52. Liens Rapides
  53. </v-row>
  54. <v-row>
  55. <small class="small-link">A propos</small>
  56. </v-row>
  57. <v-row>
  58. <small class="small-link">Nos logiciels</small>
  59. </v-row>
  60. <v-row>
  61. <small class="small-link">Nos actus</small>
  62. </v-row>
  63. </v-col>
  64. <v-col
  65. :cols="smAndDown ? 6 : 2"
  66. :class="smAndDown ? 'link-sm' : ''"
  67. >
  68. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  69. Informations
  70. </v-row>
  71. <v-row>
  72. <small class="small-link">FAQ</small>
  73. </v-row>
  74. <v-row>
  75. <small class="small-link">Nous rejoindre</small>
  76. </v-row>
  77. <v-row>
  78. <small class="small-link">Presse</small>
  79. </v-row>
  80. <v-row>
  81. <small class="small-link">CGV</small>
  82. </v-row>
  83. </v-col>
  84. <v-col
  85. :cols="smAndDown ? 6 : 2"
  86. :class="smAndDown ? 'link-sm' : ''"
  87. >
  88. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  89. Espace client
  90. </v-row>
  91. <v-row>
  92. <small class="small-link">Mon compte</small>
  93. </v-row>
  94. <v-row>
  95. <small class="small-link">Nous contacter</small>
  96. </v-row>
  97. </v-col>
  98. <v-col
  99. :cols="smAndDown ? 6 : 2"
  100. :class="smAndDown ? 'link-sm' : ''"
  101. >
  102. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  103. Liens Rapides
  104. </v-row>
  105. <v-row>
  106. <v-col :cols="smAndDown ? 4 : 2">
  107. <v-icon class="fab fa-facebook" />
  108. </v-col>
  109. <v-col :cols="smAndDown ? 4 : 2">
  110. <v-icon class="fab fa-linkedin" />
  111. </v-col>
  112. <v-col :cols="smAndDown ? 4 : 2">
  113. <v-icon class="fab fa-youtube" />
  114. </v-col>
  115. </v-row>
  116. </v-col>
  117. </v-row>
  118. </div>
  119. </div>
  120. </LayoutContainer>
  121. </footer>
  122. </template>
  123. <script setup>
  124. import { useDisplay } from "vuetify";
  125. import { ref, provide } from 'vue';
  126. const footerElement = ref(null);
  127. provide('footerElement', footerElement);
  128. const { smAndDown, lgAndUp } = useDisplay();
  129. </script>
  130. <style scoped>
  131. .link-sm {
  132. display: flex;
  133. flex-direction: column;
  134. justify-content: center;
  135. align-items: center;
  136. text-align: center;
  137. }
  138. .logo-opentalent-sm {
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. }
  143. .icon:nth-child(2) {
  144. margin-left: 10px;
  145. }
  146. .title-link,
  147. .title-link-sm {
  148. font-family: "Barlow";
  149. font-style: normal;
  150. font-weight: 500;
  151. font-size: 1rem;
  152. line-height: 20px;
  153. margin-bottom: 1rem;
  154. }
  155. .title-link-sm {
  156. margin-bottom: 0.1rem;
  157. }
  158. .small-link {
  159. margin-bottom: 0.5rem;
  160. font-family: "Barlow";
  161. font-style: normal;
  162. font-weight: 300;
  163. font-size: 0.7rem;
  164. line-height: 20px;
  165. /* identical to box height, or 143% */
  166. color: #ffffff;
  167. }
  168. .container {
  169. background: #091d20;
  170. color: aliceblue;
  171. }
  172. .activities {
  173. height: 12rem;
  174. background: #091d20;
  175. border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
  176. box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.07);
  177. }
  178. .footer {
  179. margin-top: 2rem;
  180. margin-bottom: 6rem;
  181. }
  182. .logo {
  183. margin-top: 25px;
  184. margin-bottom: 21px;
  185. width: 141px;
  186. height: 77px;
  187. }
  188. .logo-jaune {
  189. margin-left: 307.74px;
  190. }
  191. .logo-rouge {
  192. margin-left: 117px;
  193. }
  194. .logo-bleu {
  195. margin-left: 91.74px;
  196. }
  197. .text-logo-jaune {
  198. margin-left: 10rem;
  199. font-family: "Barlow";
  200. font-style: normal;
  201. font-weight: 500;
  202. font-size: 14px;
  203. line-height: 18px;
  204. display: flex;
  205. align-items: center;
  206. color: #ecfbfc;
  207. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  208. 0px 4px 4px rgba(0, 0, 0, 0.25);
  209. }
  210. .text-logo-rouge {
  211. margin-left: 37.74px;
  212. font-family: "Barlow";
  213. font-style: normal;
  214. font-weight: 500;
  215. font-size: 14px;
  216. line-height: 18px;
  217. display: flex;
  218. align-items: center;
  219. color: #ecfbfc;
  220. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  221. 0px 4px 4px rgba(0, 0, 0, 0.25);
  222. }
  223. .text-logo-bleu {
  224. height: 24px;
  225. left: 897px;
  226. top: 7858px;
  227. margin-left: 25.74px;
  228. font-family: "Barlow";
  229. font-style: normal;
  230. font-weight: 500;
  231. font-size: 14px;
  232. line-height: 18px;
  233. display: flex;
  234. align-items: center;
  235. color: #ecfbfc;
  236. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  237. 0px 4px 4px rgba(0, 0, 0, 0.25);
  238. }
  239. </style>