Vincent 11 月之前
父節點
當前提交
128674252f
共有 3 個文件被更改,包括 129 次插入1 次删除
  1. 0 1
      components/Partnerships/Benefit.vue
  2. 127 0
      components/Partnerships/Contact.vue
  3. 2 0
      pages/nos-partenaires.vue

+ 0 - 1
components/Partnerships/Benefit.vue

@@ -23,7 +23,6 @@ Section "Bénéfices" de la page du nos partenaires
       <v-row class="center-90 benefits">
         <v-btn
             to="/nous-contacter"
-            href="https://www.cmf-musique.org/contact/"
             class="btn-contact"
         >
           Devenir partenaire

+ 127 - 0
components/Partnerships/Contact.vue

@@ -0,0 +1,127 @@
+<!--
+Section "Besoin d'aide" de la page d'accueil
+-->
+
+<template>
+  <AnchoredSection id="contact">
+    <LayoutContainer>
+      <v-row class="center-90 mt-6">
+        <v-col cols="12" lg="6" class="col">
+          <v-img
+              src="/images/pages/home/help/Opentalent_a_votre_service.png"
+              alt="Un homme et une femme tous les deux le sourire aux lèvres se serre la main"
+          />
+        </v-col>
+
+        <v-col cols="12" lg="6" class="col">
+          <h3>Nous contacter</h3>
+
+          <p>Vous souhaitez devenir partenaire d’Opentalent ? </p>
+          <br />
+          <p>Contactez-nous pour explorer ensemble de nouvelles opportunités.</p>
+
+          <v-row>
+            <v-btn
+                to="/nous-contacter"
+                class="button-faq"
+            >
+              Devenir partenaire
+            </v-btn>
+          </v-row>
+        </v-col>
+      </v-row>
+    </LayoutContainer>
+  </AnchoredSection>
+</template>
+
+<script setup lang="ts">
+import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
+</script>
+
+<style scoped lang="scss">
+.v-container {
+  margin: 64px auto 24px auto;
+  padding: 16px;
+  max-width: 95%;
+
+  .col {
+    padding: 0 6px;
+    display: flex;
+    flex-direction: column;
+  }
+
+  .col:first-child {
+    align-items: center;
+  }
+
+  .col:nth-child(2) {
+    padding: 60px;
+    justify-content: center;
+    align-items: self-start;
+
+    @media (max-width: 600px) {
+      padding: 12px;
+      * {
+        max-width: 100%;
+      }
+    }
+  }
+}
+
+.v-img {
+  width: 50rem;
+  border-radius: 3rem;
+}
+
+h3 {
+  margin-bottom: 0.7rem;
+  font-weight: 400;
+  font-size: 2rem;
+  line-height: 34px;
+  width: 25rem;
+}
+
+p {
+  width: 25rem;
+  font-weight: 300;
+  font-size: 1.1rem;
+  line-height: 1.4rem;
+  color: var(--primary-color);
+}
+
+.button-faq {
+  width: 195px;
+  height: 53px;
+  margin-top: 30px;
+  margin-left: 10px;
+  background: var(--secondary-color);
+  border-radius: 6px;
+  color: var(--on-secondary-color);
+  padding: 19px 28px;
+
+  @media (max-width: 1240px) {
+    margin-top: 24px;
+    width: 40%;
+    margin-left: 30%;
+  }
+
+  @media (max-width: 600px) {
+    width: 90%;
+    margin-left: 5%;
+  }
+}
+
+@media (max-width: 1240px) {
+  .v-row {
+    width: 100%;
+    margin: 0;
+  }
+
+  .v-img {
+    width: 40rem;
+    margin-left: auto;
+    margin-right: auto;
+    margin-top: 4rem;
+  }
+}
+</style>

+ 2 - 0
pages/nos-partenaires.vue

@@ -29,6 +29,8 @@
 
     <PartnershipsPartners />
 
+    <PartnershipsContact />
+
     <LayoutFooterPrefooter />
   </div>
 </template>