Banner.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <template>
  2. <LayoutContainer>
  3. <v-row>
  4. <div class="container-title">
  5. <v-col cols="4" class="text-left">
  6. <h1>Manager</h1>
  7. </v-col>
  8. <v-col cols="4" class="logiciel">
  9. <h1>Opentalent Artist </h1>
  10. </v-col>
  11. <v-col cols="4" class="text-right">
  12. <h1>School</h1>
  13. </v-col>
  14. </div>
  15. </v-row>
  16. <v-row>
  17. <v-col cols="12">
  18. <div class="banner-container">
  19. <img
  20. src="/images/logiciels/artist/banner.jpg"
  21. alt="line"
  22. class="cover-image"
  23. />
  24. <div class="black-square">
  25. <v-row>
  26. <div class="content-row">
  27. <v-icon size="50" class="fa-brands fa-react icon"></v-icon>
  28. <p class="description-square">
  29. École de musique, d'art, de danse, de cirque, conservatoires
  30. et MJC
  31. </p>
  32. </div>
  33. </v-row>
  34. </div>
  35. <div class="white-square">
  36. <img
  37. src="/images/opentalent_artist_black.png"
  38. alt="Logo"
  39. class="logo-image"
  40. />
  41. </div>
  42. </div>
  43. </v-col>
  44. </v-row>
  45. <v-row>
  46. <v-col cols="12" class="menu-container">
  47. <div v-for="menu in menus" :key="menu.label">
  48. <v-chip v-if="state.activeMenu === menu.label" class="active-menu">{{ menu.label }}</v-chip>
  49. <span v-else>{{ menu.label }}</span>
  50. </div>
  51. </v-col>
  52. </v-row>
  53. </LayoutContainer>
  54. </template>
  55. <script setup>
  56. const state = ref({
  57. activeMenu: "Présentation",
  58. })
  59. const menus = [
  60. { label: 'Présentation' },
  61. { label: 'Avantages' },
  62. { label: 'Fonctionnalités' },
  63. { label: 'Comparatif' },
  64. { label: 'Contact' },
  65. { label: 'Accompagnement' },
  66. { label: 'Témoignages' },
  67. { label: 'Aide' }
  68. ];
  69. </script>
  70. <style scoped>
  71. .container-title {
  72. display: flex;
  73. justify-content: space-around;
  74. font-family: "Barlow";
  75. line-height: 16px;
  76. display: flex;
  77. align-items: center;
  78. text-align: center;
  79. letter-spacing: 0.18em;
  80. border-bottom: 0.1rem solid #eaeaea;
  81. }
  82. .text-left {
  83. font-family: "Barlow";
  84. font-style: normal;
  85. font-weight: 600;
  86. font-size: 3rem;
  87. line-height: 85px;
  88. color: #000000;
  89. opacity: 0.1;
  90. margin-top: 2rem;
  91. margin-left: 5rem;
  92. }
  93. .logiciel {
  94. font-family: "Barlow";
  95. font-style: normal;
  96. font-size: 3rem;
  97. line-height: 85px;
  98. text-align: center;
  99. color: #000000;
  100. margin-left: 6rem;
  101. margin-right: 4rem;
  102. }
  103. .text-right {
  104. margin-top: 2rem;
  105. font-family: "Barlow";
  106. font-style: normal;
  107. font-weight: 600;
  108. font-size: 3rem;
  109. line-height: 85px;
  110. text-align: center;
  111. color: #000000;
  112. text-align: right;
  113. opacity: 0.1;
  114. margin-right: 5rem;
  115. }
  116. .menu-container {
  117. display: flex;
  118. justify-content: space-around;
  119. padding: 1rem 10rem;
  120. background: white;
  121. color: #bbb8b8;
  122. font-family: "Barlow";
  123. font-size: 12px;
  124. line-height: 16px;
  125. display: flex;
  126. align-items: center;
  127. text-align: center;
  128. letter-spacing: 0.18em;
  129. text-transform: uppercase;
  130. border-bottom: 0.1rem solid #eaeaea;
  131. }
  132. .v-chip.active-menu {
  133. background: black;
  134. color: white;
  135. }
  136. .black-square {
  137. position: absolute;
  138. bottom: 0rem;
  139. right: 0;
  140. width: 13rem;
  141. height: 10rem;
  142. background: #FAC20A;
  143. }
  144. .blue-square {
  145. position: absolute;
  146. bottom: 0.5rem;
  147. right: 12rem;
  148. width: 13rem;
  149. height: 10rem;
  150. background: #0e2d32;
  151. }
  152. .white-square {
  153. position: absolute;
  154. bottom: 0rem;
  155. right: 13rem;
  156. width: 13rem;
  157. height: 10rem;
  158. background: white;
  159. }
  160. .description-square {
  161. font-family: "Barlow";
  162. font-style: normal;
  163. font-weight: 300;
  164. font-size: 0.8rem;
  165. text-align: center;
  166. color: #091d20;
  167. display: flex;
  168. align-items: center;
  169. text-align: center;
  170. margin-top: 0.5rem;
  171. margin-left: 2rem;
  172. margin-right: 2rem;
  173. margin-bottom: 1rem;
  174. }
  175. .content-row {
  176. margin-top: 2rem;
  177. display: flex;
  178. flex-direction: column;
  179. justify-content: space-around;
  180. align-items: center;
  181. height: 100%;
  182. }
  183. .icon {
  184. margin-left: 2rem;
  185. margin-right: 2rem;
  186. }
  187. .logo-image {
  188. width: 90%;
  189. height: auto;
  190. margin-top: 1.5rem;
  191. margin-left: 0.5rem;
  192. }
  193. .banner-container {
  194. position: relative;
  195. overflow: hidden;
  196. display: flex;
  197. justify-content: center;
  198. align-items: flex-start;
  199. height: 25rem;
  200. }
  201. .cover-image {
  202. width: 100%;
  203. height: auto;
  204. object-fit: cover;
  205. transition: transform 0.2s;
  206. margin: 0 auto;
  207. transform: scaleX(-1);
  208. display: block;
  209. }
  210. </style>