Banner.vue 5.2 KB

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