Footer.vue 8.5 KB

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