| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <AnchoredSection id="trial" class="alt-theme main">
- <LayoutContainer class="mb-12">
- <div class="center-90">
- <v-row class="subtitle">
- <v-col cols="12">
- <LayoutUISubTitle class="mt-12 ml-3">
- Vous souhaitez découvrir le logiciel Opentalen Artist Premium ?
- </LayoutUISubTitle>
- </v-col>
- </v-row>
- </div>
- </LayoutContainer>
- <v-row>
- <v-col cols="12" lg="6" class="content">
- <h3 class="my-6">
- Essayez Opentalent Artist Premium gratuitement pendant 30 jours
- </h3>
- <v-btn
- to="shop/try/artist-premium"
- height="48"
- aria-label="Essayez Opentalent Artist Premium gratuitement pendant 30 jours"
- class="inv-theme"
- >
- Commencer l'essai gratuit
- </v-btn>
- </v-col>
- <v-col cols="12" lg="6" class="badges">
- <div>
- <v-img
- src="/images/pages/opentalent_artist/trial/credit_card_off.svg"
- alt="Icône représentant une carte de crédit barrée"
- />
- <p>Aucune carte bleue requise</p>
- </div>
- <div>
- <v-img
- src="/images/pages/opentalent_artist/trial/handshake.svg"
- alt="Icône représentant une poignée de mains"
- />
- <p class="text-btn">
- Essai sans engagement
- </p>
- </div>
- </v-col>
- </v-row>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- </script>
- <style scoped lang="scss">
- .main {
- min-height: 560px;
- background-image: url('/images/pages/opentalent_artist/trial/Boutique_en_ligne-Opentalent_Visuel_site.png');
- background-size: cover;
- background-position: center 15%;
- background-repeat: no-repeat;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- position: relative;
- &::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- z-index: 1;
- }
- }
- .v-container, .v-row {
- z-index: 2;
- }
- h3 {
- font-size: 28px;
- }
- .content {
- @media (max-width: 1280px) {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- max-width: 90%;
- margin: 0 auto;
- h3 {
- text-align: center;
- }
- }
- }
- .badges {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- > div {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- height: 84px;
- width: 360px;
- margin: 12px 0;
- border: solid 1px var(--on-alt-theme);
- border-radius: 6px;
- color: var(--on-alt-theme);
- font-weight: 700;
- text-transform: uppercase;
- .v-img {
- height: 32px;
- width: 32px;
- max-width: 32px;
- margin: 0 24px;
- }
- }
- }
- </style>
|