Footer.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. <template>
  2. <footer ref="footerElement">
  3. <LayoutContainer>
  4. <div class="footer">
  5. <div class="content-footer">
  6. <v-row>
  7. <v-col
  8. :cols="smAndDown ? 12 : 4"
  9. :class="smAndDown ? 'logo-opentalent-sm' : 'flex-container'"
  10. >
  11. <v-img class="logo" src="/images/logo/footer-logo.png" />
  12. <small class="ml-12 right-reserved"
  13. >© 2022 Opentalent, Tous droits réservés</small
  14. >
  15. </v-col>
  16. <v-col
  17. :cols="smAndDown ? 6 : 2"
  18. :class="smAndDown ? 'link-sm' : ''"
  19. >
  20. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  21. <h5 class="ml-12 mt-10 h5-title">Agenda culturel</h5>
  22. </v-row>
  23. <v-row>
  24. <router-link to="/annuaire" class="small-link ml-12">Annuaire</router-link>
  25. </v-row>
  26. <v-row>
  27. <router-link to="/actualites" class="small-link ml-12">Actualités</router-link>
  28. </v-row>
  29. <v-row>
  30. <router-link to="/annonces" class="small-link ml-12">Annonces</router-link>
  31. </v-row>
  32. </v-col>
  33. <v-col
  34. :cols="smAndDown ? 6 : 2"
  35. :class="smAndDown ? 'link-sm' : 'details-footer'"
  36. >
  37. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  38. <h5 class="ml-12 mt-10 h5-title">Logiciels culturels</h5>
  39. </v-row>
  40. <v-row>
  41. <router-link to="/opentalent_artist" class="small-link ml-12">Opentalent Artist</router-link>
  42. </v-row>
  43. <v-row>
  44. <router-link to="/opentalent_school" class="small-link ml-12">Opentalent School</router-link>
  45. </v-row>
  46. <v-row>
  47. <router-link to="/opentalent_manager" class="small-link ml-12">Opentalent Manager</router-link>
  48. </v-row>
  49. </v-col>
  50. <v-col
  51. :cols="smAndDown ? 6 : 2"
  52. :class="smAndDown ? 'link-sm' : 'details-footer'"
  53. >
  54. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  55. <h5 class="ml-12 mt-8 h5-title">Espace client</h5>
  56. </v-row>
  57. <v-row>
  58. <router-link to="/faq" class="small-link ml-12">Foire Aux Questions</router-link>
  59. </v-row>
  60. <v-row>
  61. <router-link to="/support" class="small-link ml-12">Support en ligne</router-link>
  62. </v-row>
  63. <v-row>
  64. <router-link to="/nous-contacter" class="small-link ml-12">Nous contacter</router-link>
  65. </v-row>
  66. </v-col>
  67. <v-col
  68. :cols="smAndDown ? 6 : 2"
  69. :class="smAndDown ? 'link-sm' : ''"
  70. >
  71. <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
  72. <h5 class="ml-12 mt-10 h5-title">Suivez-nous</h5>
  73. </v-row>
  74. <v-row class="ml-5">
  75. <v-col :cols="smAndDown ? 4 : 2">
  76. <a href="https://www.facebook.com/opentalent" target="_blank" class="fab fa-facebook brand" />
  77. </v-col>
  78. <v-col :cols="smAndDown ? 4 : 2">
  79. <a href="https://www.linkedin.com/company/2iopenservice" target="_blank" class="fab fa-linkedin brand" />
  80. </v-col>
  81. <v-col :cols="smAndDown ? 4 : 2">
  82. <a href="https://www.youtube.com/@Opentalent74300" target="_blank" class="fab fa-youtube brand" />
  83. </v-col>
  84. <v-col :cols="smAndDown ? 4 : 2">
  85. <a href="https://twitter.com/Opentalent_FRA" target="_blank" class="fa-brands fa-square-twitter brand" />
  86. </v-col>
  87. </v-row>
  88. </v-col>
  89. </v-row>
  90. <hr class="mb-6 mt-4" />
  91. <v-row class="mt-2" justify="center">
  92. <p>
  93. Mentions légales - Politiques de cookies - Conditions Générales de
  94. Ventes
  95. </p>
  96. </v-row>
  97. <v-row class="mt-2" justify="center">
  98. <p>2024 &copy; Tous droits réservés par Opentalent</p>
  99. </v-row>
  100. </div>
  101. </div>
  102. </LayoutContainer>
  103. </footer>
  104. </template>
  105. <script setup>
  106. import { useDisplay } from "vuetify";
  107. import { ref, provide } from "vue";
  108. const footerElement = ref(null);
  109. provide("footerElement", footerElement);
  110. const { smAndDown, lgAndUp } = useDisplay();
  111. </script>
  112. <style scoped>
  113. .brand{
  114. color: #ecfbfc;
  115. font-size: 1.9rem;
  116. text-decoration: none !important;
  117. }
  118. .flex-container {
  119. display: flex;
  120. flex-direction: column;
  121. justify-content: space-between;
  122. }
  123. .vertical-bar {
  124. height: 4rem;
  125. border: 0.1rem solid #ecfbfc;
  126. margin-left: 10px;
  127. margin-top: 3rem;
  128. }
  129. .right-reserved {
  130. color: rgba(255, 255, 255, 0.6);
  131. font-family: Space Grotesk;
  132. font-size: 0.6rem;
  133. letter-spacing: 1px;
  134. }
  135. .h5-title {
  136. font-size: 1.1rem;
  137. font-style: normal;
  138. letter-spacing: 1.2px;
  139. text-transform: uppercase;
  140. }
  141. .link-sm {
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: center;
  145. align-items: center;
  146. text-align: center;
  147. }
  148. .logo-opentalent-sm {
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. }
  153. .icon:nth-child(2) {
  154. margin-left: 10px;
  155. }
  156. .title-link,
  157. .title-link-sm {
  158. font-family: "Barlow";
  159. font-style: normal;
  160. font-weight: 500;
  161. font-size: 1rem;
  162. line-height: 20px;
  163. margin-bottom: 1rem;
  164. }
  165. .title-link-sm {
  166. margin-bottom: 0.1rem;
  167. }
  168. .small-link {
  169. font-family: "Barlow";
  170. font-style: normal;
  171. font-weight: 300;
  172. font-size: 0.9rem;
  173. line-height: 20px;
  174. color: #ffffff;
  175. text-decoration: none !important; ;
  176. }
  177. .container {
  178. background: #091d20;
  179. color: aliceblue;
  180. }
  181. .activities {
  182. height: 12rem;
  183. background: #091d20;
  184. border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
  185. box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.07);
  186. }
  187. .footer {
  188. margin-top: 2rem;
  189. margin-bottom: 3rem;
  190. }
  191. .logo {
  192. }
  193. .logo-jaune {
  194. margin-left: 307.74px;
  195. }
  196. .logo-rouge {
  197. margin-left: 117px;
  198. }
  199. .logo-bleu {
  200. margin-left: 91.74px;
  201. }
  202. .text-logo-jaune {
  203. margin-left: 10rem;
  204. font-family: "Barlow";
  205. font-style: normal;
  206. font-weight: 500;
  207. font-size: 14px;
  208. line-height: 18px;
  209. display: flex;
  210. align-items: center;
  211. color: #ecfbfc;
  212. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  213. 0px 4px 4px rgba(0, 0, 0, 0.25);
  214. }
  215. .text-logo-rouge {
  216. margin-left: 37.74px;
  217. font-family: "Barlow";
  218. font-style: normal;
  219. font-weight: 500;
  220. font-size: 14px;
  221. line-height: 18px;
  222. display: flex;
  223. align-items: center;
  224. color: #ecfbfc;
  225. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  226. 0px 4px 4px rgba(0, 0, 0, 0.25);
  227. }
  228. .text-logo-bleu {
  229. height: 24px;
  230. left: 897px;
  231. top: 7858px;
  232. margin-left: 25.74px;
  233. font-family: "Barlow";
  234. font-style: normal;
  235. font-weight: 500;
  236. font-size: 14px;
  237. line-height: 18px;
  238. display: flex;
  239. align-items: center;
  240. color: #ecfbfc;
  241. text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
  242. 0px 4px 4px rgba(0, 0, 0, 0.25);
  243. }
  244. </style>