| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <template>
- <LayoutContainer>
- <v-row>
- <div class="container-title">
- <v-col cols="4" class="text-left">
- <h1>School</h1>
- </v-col>
- <v-col cols="4" class="logiciel">
- <h1>Opentalent Manager</h1>
- </v-col>
- <v-col cols="4" class="text-right">
- <h1>Artist</h1>
- </v-col>
- </div>
- </v-row>
- <v-row>
- <v-col cols="12">
- <div class="banner-container">
- <img
- src="/images/logiciels/manager/banner-manager.png"
- alt="line"
- class="cover-image"
- />
- <div class="red-square">
- <v-row>
- <div class="content-row">
- <v-icon size="50" class="fa-brands fa-react icon"></v-icon>
- <p class="description-square">
- Fédérations, confédérations et collectivités
- </p>
- </div>
- </v-row>
- </div>
- <div class="white-square">
- <img
- src="/images/opentalent_manager_black.jpg"
- alt="Logo"
- class="logo-image"
- />
- </div>
- </div>
- </v-col>
- </v-row>
- <v-row>
- <v-col cols="12" class="menu-container">
- <div v-for="menu in menus" :key="menu.label">
- <v-chip v-if="state.activeMenu === menu.label" class="active-menu">{{ menu.label }}</v-chip>
- <span v-else>{{ menu.label }}</span>
- </div>
- </v-col>
- </v-row>
- </LayoutContainer>
- </template>
- <script setup>
- const state = ref({
- activeMenu: "Présentation",
- })
- const menus = [
- { label: 'Présentation' },
- { label: 'Avantages' },
- { label: 'Comparatif' },
- { label: 'Détails' },
- { label: 'Abonnement' },
- { label: 'Accompagnement' },
- { label: 'Témoignages' },
- { label: 'Formations' },
- { label: 'Solutions associées' }
- ];
- </script>
- <style scoped >
- .container-title {
- display: flex;
- justify-content: space-around;
- font-family: "Barlow";
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.18em;
- border-bottom: 0.1rem solid #eaeaea;
- }
- .text-left {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- color: #000000;
- opacity: 0.1;
- margin-top: 2rem;
- margin-left: 5rem;
- }
- .logiciel {
- font-family: "Barlow";
- font-style: normal;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- margin-left: 6rem;
- margin-right: 4rem;
- }
- .text-right {
- margin-top: 2rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 3rem;
- line-height: 85px;
- text-align: center;
- color: #000000;
- text-align: right;
- opacity: 0.1;
- margin-right: 5rem;
- }
- .menu-container {
- display: flex;
- justify-content: space-around;
- padding: 1rem 10rem;
- background: white;
- color: #bbb8b8;
- font-family: "Barlow";
- font-size: 12px;
- line-height: 16px;
- display: flex;
- align-items: center;
- text-align: center;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- border-bottom: 0.1rem solid #eaeaea;
- }
- .v-chip.active-menu {
- background: black;
- color: white;
- }
- .red-square {
- position: absolute;
- bottom: 0.4rem;
- right: 0;
- width: 13rem;
- height: 10rem;
- background: #D8050B;
- opacity: 0.9;
- color:white;
- }
- .white-square {
- position: absolute;
- bottom: 0.4rem;
- right: 13rem;
- width: 13rem;
- height: 10rem;
- background: white;
- }
- .description-square {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 0.8rem;
- text-align: center;
- color: white;
- display: flex;
- align-items: center;
- text-align: center;
- margin-top: 0.5rem;
- margin-left: 2rem;
- margin-right: 2rem;
- margin-bottom: 1rem;
- }
- .content-row {
- margin-top: 2rem;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- align-items: center;
- height: 100%;
- }
- .icon {
- margin-left: 2rem;
- margin-right: 2rem;
- }
- .logo-image {
- width: 90%;
- height: auto;
- margin-top: 1.5rem;
- margin-left: 0.5rem;
- }
- .banner-container {
- position: relative;
- overflow: hidden;
- }
- .cover-image {
- width: 100%;
- height: 27rem;
- object-fit: cover;
- transition: transform 0.2s;
- margin: 0 auto;
- transform: scaleX(-1);
- }
- </style>
|