Footer.vue 8.3 KB

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