Footer.vue 7.4 KB

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