Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Details correction #11

Merged
merged 3 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions pages/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const submitForm = async () => {
} else {
console.log(res.message);
form.value = { name: '', email: '', message: '' };
alert('Votre message a bien été envoyé !');
}

} catch (error) {
Expand Down Expand Up @@ -74,8 +75,6 @@ const submitForm = async () => {

<div class="margin" style="margin-bottom: 0;">

<SecondHeading class="lg:w-3/5 xl:w-2/5 mx-auto" title-black="Le " title-yellow="département" />

<section class="grid grid-cols-1 xl:grid-cols-5 xl:gap-14">
<div class="col-span-3 xl:flex xl:flex-col xl:gap-4">
<AnimatedHeading class="text-noir mb-8" title="Le département" />
Expand Down Expand Up @@ -108,7 +107,7 @@ const submitForm = async () => {
</section>
</div>

<div class="pt-32 md:pt-36 relative">
<div class="pt-32 md:pt-36 relative -z-10">
<img class="object-cover h-[150px] md:h-auto" src="@/assets/images/bitmap/bande-contact.png" alt="Étudiants qui travaillent">
<p class="absolute top-1/2 translate-y-1/2 left-1/2 -translate-x-1/2 text-white font-semibold font-poppins text-7xl">Contact</p>
</div>
Expand Down
3 changes: 2 additions & 1 deletion pages/mentions-legales.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script setup lang="ts">
import heroImg from '@/assets/images/bitmap/hero-mentions.png';
import { RouterLink } from 'vue-router';

useSeoMeta({
title: 'Mentions légales | MMI Montbéliard',
Expand Down Expand Up @@ -56,7 +57,7 @@ useSeoMeta({
<p class="text-noir mt-1 mb-6 md:mt-3 md:mb-8">
Ce site peut recueillir des données personnelles via des formulaires de contact ou
d’inscription. Ces informations sont traitées conformément à notre politique de
confidentialité, accessible [lien vers la politique de confidentialité].
confidentialité, accessible <RouterLink class="text-jaune hover:text-noir duration-500" to="/confidentialite">ici !</RouterLink>
</p>
<h3 class="text-noir uppercase">
Cookies
Expand Down
Loading