Banner.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <LayoutUIBannerTitle
  5. :centerText="'Qui sommes nous ?'"
  6. />
  7. </v-row>
  8. <v-row>
  9. <v-col cols="12">
  10. <LayoutUIBanner
  11. :imageSrc="'/images/solutions/school.jpg'"
  12. imageAlt="'line'"
  13. />
  14. </v-col>
  15. </v-row>
  16. </LayoutContainer>
  17. </template>
  18. <script setup></script>
  19. <style scoped>
  20. :deep().logiciel{
  21. font-family: "Barlow";
  22. font-style: normal;
  23. font-size: 3rem;
  24. line-height: 85px;
  25. text-align: center;
  26. color: #000000;
  27. width: 100%;
  28. }
  29. :deep().text-left, :deep().text-right, :deep().description-square, :deep().black-square, :deep().blue-square {
  30. display: none;
  31. }
  32. :deep().text-right {
  33. display: none;
  34. }
  35. .container-title {
  36. display: flex;
  37. justify-content: space-around;
  38. line-height: 16px;
  39. display: flex;
  40. align-items: center;
  41. text-align: center;
  42. letter-spacing: 0.18em;
  43. border-bottom: 0.1rem solid #eaeaea;
  44. }
  45. .text-left {
  46. font-family: "Barlow";
  47. font-style: normal;
  48. font-weight: 600;
  49. font-size: 3rem;
  50. line-height: 85px;
  51. color: #000000;
  52. opacity: 0.1;
  53. margin-top: 2rem;
  54. margin-left: 5rem;
  55. }
  56. .text-right {
  57. margin-top: 2rem;
  58. font-family: "Barlow";
  59. font-style: normal;
  60. font-weight: 600;
  61. font-size: 3rem;
  62. line-height: 85px;
  63. text-align: center;
  64. color: #000000;
  65. text-align: right;
  66. opacity: 0.1;
  67. margin-right: 5rem;
  68. }
  69. .logiciel {
  70. font-family: "Barlow";
  71. font-style: normal;
  72. font-size: 3rem;
  73. line-height: 85px;
  74. text-align: center;
  75. color: #000000;
  76. margin-left: 6rem;
  77. margin-right: 4rem;
  78. }
  79. </style>
  80. <!-- <template>
  81. <LayoutContainer>
  82. <v-row>
  83. <v-col
  84. cols="12"
  85. class="title"
  86. >
  87. <h1 class="text-center">
  88. Qui sommes nous ?
  89. </h1>
  90. </v-col>
  91. </v-row>
  92. <v-row>
  93. <v-col cols="12">
  94. <div class="banner-container">
  95. <img
  96. src="/images/solutions/school.jpg"
  97. alt="line"
  98. class="cover-image"
  99. >
  100. </div>
  101. </v-col>
  102. </v-row>
  103. <v-row>
  104. <v-col
  105. cols="12"
  106. class="menu-container"
  107. >
  108. <div
  109. v-for="menu in menus"
  110. :key="menu.label"
  111. >
  112. <v-chip
  113. v-if="state.activeMenu === menu.label"
  114. class="active-menu"
  115. >
  116. {{
  117. menu.label
  118. }}
  119. </v-chip>
  120. <span v-else>{{ menu.label }}</span>
  121. </div>
  122. </v-col>
  123. </v-row>
  124. </LayoutContainer>
  125. </template>
  126. <script setup>
  127. import { ref } from "vue";
  128. const state = ref({
  129. activeMenu: "Qui sommes-nous",
  130. });
  131. const menus = [
  132. { label: "Qui sommes-nous" },
  133. { label: "nos logiciels" },
  134. { label: "l’agenda opentalent" },
  135. { label: "notre histoire" },
  136. { label: "notre équipe" },
  137. ];
  138. </script>
  139. <style scoped>
  140. .title {
  141. margin-top: 2rem;
  142. margin-bottom: 2rem;
  143. text-align: center;
  144. font-family: "Barlow";
  145. font-style: normal;
  146. font-weight: 600;
  147. font-size: 3rem;
  148. line-height: 85px;
  149. }
  150. .container-title {
  151. display: flex;
  152. justify-content: space-around;
  153. font-family: "Barlow";
  154. line-height: 16px;
  155. display: flex;
  156. align-items: center;
  157. text-align: center;
  158. letter-spacing: 0.18em;
  159. border-bottom: 0.1rem solid #eaeaea;
  160. }
  161. .text-left {
  162. font-family: "Barlow";
  163. font-style: normal;
  164. font-weight: 600;
  165. font-size: 3rem;
  166. line-height: 85px;
  167. color: #000000;
  168. opacity: 0.1;
  169. margin-top: 2rem;
  170. margin-left: 5rem;
  171. }
  172. .logiciel {
  173. font-family: "Barlow";
  174. font-style: normal;
  175. font-size: 3rem;
  176. line-height: 85px;
  177. text-align: center;
  178. color: #000000;
  179. margin-left: 6rem;
  180. margin-right: 4rem;
  181. }
  182. .text-right {
  183. margin-top: 2rem;
  184. font-family: "Barlow";
  185. font-style: normal;
  186. font-weight: 600;
  187. font-size: 3rem;
  188. line-height: 85px;
  189. text-align: center;
  190. color: #000000;
  191. text-align: right;
  192. opacity: 0.1;
  193. margin-right: 5rem;
  194. }
  195. .menu-container {
  196. display: flex;
  197. justify-content: space-around;
  198. padding: 1rem 10rem;
  199. background: white;
  200. color: #bbb8b8;
  201. font-family: "Barlow";
  202. font-size: 12px;
  203. line-height: 16px;
  204. display: flex;
  205. align-items: center;
  206. text-align: center;
  207. letter-spacing: 0.18em;
  208. text-transform: uppercase;
  209. border-bottom: 0.1rem solid #eaeaea;
  210. }
  211. .v-chip.active-menu {
  212. background: black;
  213. color: white;
  214. }
  215. .black-square {
  216. position: absolute;
  217. bottom: 0.4rem;
  218. right: 0;
  219. width: 13rem;
  220. height: 10rem;
  221. background-color: black;
  222. background: #9edbdd;
  223. }
  224. .blue-square {
  225. position: absolute;
  226. bottom: 0.5rem;
  227. right: 12rem;
  228. width: 13rem;
  229. height: 10rem;
  230. background: #0e2d32;
  231. }
  232. .description-square {
  233. font-family: "Barlow";
  234. font-style: normal;
  235. font-weight: 300;
  236. font-size: 0.8rem;
  237. text-align: center;
  238. color: #091d20;
  239. display: flex;
  240. align-items: center;
  241. text-align: center;
  242. margin-top: 0.5rem;
  243. margin-left: 2rem;
  244. margin-right: 2rem;
  245. margin-bottom: 1rem;
  246. }
  247. .content-row {
  248. margin-top: 2rem;
  249. display: flex;
  250. flex-direction: column;
  251. justify-content: space-around;
  252. align-items: center;
  253. height: 100%;
  254. }
  255. .icon {
  256. margin-left: 2rem;
  257. margin-right: 2rem;
  258. }
  259. .logo-image {
  260. width: 90%;
  261. height: auto;
  262. margin-top: 1.5rem;
  263. margin-left: 0.5rem;
  264. }
  265. .banner-container {
  266. position: relative;
  267. overflow: hidden;
  268. }
  269. .cover-image {
  270. width: 100%;
  271. height: 25rem;
  272. object-fit: cover;
  273. transition: transform 0.2s;
  274. margin: 0 auto;
  275. transform: scaleX(-1);
  276. }
  277. </style> -->