| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- <template>
- <footer ref="footerElement">
- <LayoutContainer>
- <div>
- <div class="content-footer">
- <v-row>
- <v-col
- :cols="smAndDown ? 12 : 3"
- :class="smAndDown ? 'logo-opentalent-sm' : 'flex-container'"
- >
- <nuxt-link to="/">
- <v-img class="logo" src="/images/logo/footer-logo.png" />
- </nuxt-link>
- <!-- <small class="ml-12 right-reserved"
- >© 2022 Opentalent, Tous droits réservés</small
- > -->
- </v-col>
- <v-col
- :cols="smAndDown ? 6 : 2"
- :class="smAndDown ? 'link-sm' : ''"
- >
- <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
- <h5 class="ml-12 mt-10 h5-title">Agenda culturel</h5>
- </v-row>
- <v-row>
- <router-link to="/annuaire" class="small-link ml-12"
- >Annuaire</router-link
- >
- </v-row>
- <v-row>
- <router-link to="/actualites" class="small-link ml-12"
- >Actualités</router-link
- >
- </v-row>
- <v-row>
- <router-link to="/annonces" class="small-link ml-12"
- >Annonces</router-link
- >
- </v-row>
- </v-col>
- <v-col
- :cols="smAndDown ? 6 : 2"
- :class="smAndDown ? 'link-sm' : 'details-footer'"
- >
- <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
- <h5 class="ml-12 mt-10 h5-title">Logiciels culturels</h5>
- </v-row>
- <v-row>
- <router-link to="/opentalent_artist" class="small-link ml-12"
- >Opentalent Artist</router-link
- >
- </v-row>
- <v-row>
- <router-link to="/opentalent_school" class="small-link ml-12"
- >Opentalent School</router-link
- >
- </v-row>
- <v-row>
- <router-link to="/opentalent_manager" class="small-link ml-12"
- >Opentalent Manager</router-link
- >
- </v-row>
- </v-col>
- <v-col
- :cols="smAndDown ? 6 : 2"
- :class="smAndDown ? 'link-sm' : 'details-footer'"
- >
- <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
- <h5 class="ml-12 mt-8 h5-title">Espace client</h5>
- </v-row>
- <v-row>
- <router-link
- to="https://ressources.opentalent.fr/display/FAQ/Accueil"
- class="small-link ml-12"
- >Foire Aux Questions</router-link
- >
- </v-row>
- <v-row>
- <router-link
- to="https://ressources.opentalent.fr/"
- class="small-link ml-12"
- >Support en ligne</router-link
- >
- </v-row>
- <v-row>
- <router-link to="/nous-contacter" class="small-link ml-12"
- >Nous contacter</router-link
- >
- </v-row>
- </v-col>
- <v-col
- :cols="smAndDown ? 6 : 3"
- :class="smAndDown ? 'link-sm' : ''"
- >
- <v-row :class="smAndDown ? 'title-link-sm' : 'title-link'">
- <h5 class="ml-12 mt-10 h5-title">Suivez-nous</h5>
- </v-row>
- <v-row class="ml-5" no-gutters>
- <v-col :cols="smAndDown ? 4 : 2">
- <a
- href="https://www.facebook.com/opentalent"
- target="_blank"
- class="fab fa-facebook brand"
- />
- </v-col>
- <v-col :cols="smAndDown ? 4 : 2">
- <a
- href="https://twitter.com/Opentalent_FRA"
- target="_blank"
- class="fa-brands fa-square-twitter brand"
- />
- </v-col>
- <v-col :cols="smAndDown ? 4 : 2">
- <a
- href="https://www.linkedin.com/company/2iopenservice"
- target="_blank"
- class="fab fa-linkedin brand"
- />
- </v-col>
- <v-col :cols="smAndDown ? 4 : 2">
- <a
- href="https://www.youtube.com/@Opentalent74300"
- target="_blank"
- class="fab fa-youtube brand"
- />
- </v-col>
- </v-row>
- </v-col>
- </v-row>
- </div>
- </div>
- <v-row class="footer" justify="center">
- <p class="mt-6">
- <a class="mention" href="/mentions-legales" target="_blank"
- >Mentions légales</a
- >
- -
- <a class="mention" href="/politiques-de-cookies" target="_blank"
- >Politiques de cookies</a
- >
- -
- <a class="mention" href="/CGV" target="_blank"
- >Conditions Générales de Ventes</a
- >
- </p>
- </v-row>
- <v-row justify="center" class="mb-6">
- <p class="mention">2024 © Tous droits réservés par Opentalent</p>
- </v-row>
- </LayoutContainer>
- </footer>
- </template>
- <script setup>
- import { useDisplay } from "vuetify";
- import { ref, provide } from "vue";
- const footerElement = ref(null);
- provide("footerElement", footerElement);
- const { smAndDown, lgAndUp } = useDisplay();
- </script>
- <style scoped>
- .mention {
- text-decoration: none;
- color: #ffffff;
- font-size: 0.8rem;
- }
- .brand {
- color: #ecfbfc;
- font-size: 1.9rem;
- text-decoration: none !important;
- }
- .flex-container {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .vertical-bar {
- height: 4rem;
- border: 0.1rem solid #ecfbfc;
- margin-left: 10px;
- margin-top: 3rem;
- }
- .right-reserved {
- color: rgba(255, 255, 255, 0.6);
- font-family: Space Grotesk;
- font-size: 0.6rem;
- letter-spacing: 1px;
- }
- .h5-title {
- font-size: 1.1rem;
- font-style: normal;
- letter-spacing: 1.2px;
- text-transform: uppercase;
- }
- .link-sm {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- .logo-opentalent-sm {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .icon:nth-child(2) {
- margin-left: 10px;
- }
- .title-link,
- .title-link-sm {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 1rem;
- line-height: 20px;
- margin-bottom: 1rem;
- }
- .title-link-sm {
- margin-bottom: 0.1rem;
- }
- .small-link {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 0.9rem;
- line-height: 20px;
- color: #ffffff;
- text-decoration: none !important;
- margin-bottom: 0.5rem;
- }
- .container {
- background: #091d20;
- color: aliceblue;
- }
- .activities {
- height: 12rem;
- background: #091d20;
- border-bottom: 0.4px solid rgba(255, 255, 255, 0.3);
- box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.07);
- }
- .footer {
- margin-top: 2rem;
- border-top: 0.4px solid rgba(255, 255, 255, 0.3);
- box-shadow: 0px 3px 24px rgba(0, 0, 0, 0.07);
- }
- .logo {
- margin-bottom: 3rem;
- width: 25rem;
- }
- .logo-jaune {
- margin-left: 307.74px;
- }
- .logo-rouge {
- margin-left: 117px;
- }
- .logo-bleu {
- margin-left: 91.74px;
- }
- .text-logo-jaune {
- margin-left: 10rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- display: flex;
- align-items: center;
- color: #ecfbfc;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
- 0px 4px 4px rgba(0, 0, 0, 0.25);
- }
- .text-logo-rouge {
- margin-left: 37.74px;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- display: flex;
- align-items: center;
- color: #ecfbfc;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
- 0px 4px 4px rgba(0, 0, 0, 0.25);
- }
- .text-logo-bleu {
- height: 24px;
- left: 897px;
- top: 7858px;
- margin-left: 25.74px;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- display: flex;
- align-items: center;
- color: #ecfbfc;
- text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25),
- 0px 4px 4px rgba(0, 0, 0, 0.25);
- }
- </style>
|