Banner.vue 500 B

12345678910111213141516171819202122232425262728
  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-size: 3rem;
  20. line-height: 85px;
  21. text-align: center;
  22. color: #000000;
  23. width: 100%;
  24. }
  25. </style>