Banner.vue 554 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <LayoutContainer>
  3. <LayoutUITitlePage class="mb-12">
  4. Qui sommes-nous ?
  5. </LayoutUITitlePage>
  6. <v-row>
  7. <v-col cols="12">
  8. <CommonBanner
  9. imageSrc="/images/banner/about_opentalent.png"
  10. imageAlt="banner"
  11. />
  12. </v-col>
  13. </v-row>
  14. </LayoutContainer>
  15. </template>
  16. <script setup></script>
  17. <style scoped>
  18. :deep(.logiciel) {
  19. font-family: "Barlow", serif;
  20. font-style: normal;
  21. font-size: 3rem;
  22. line-height: 85px;
  23. text-align: center;
  24. color: #000000;
  25. width: 100%;
  26. }
  27. </style>