diff --git a/sanity/schemas/siteSettings.ts b/sanity/schemas/siteSettings.ts index c1a180c..7b57237 100644 --- a/sanity/schemas/siteSettings.ts +++ b/sanity/schemas/siteSettings.ts @@ -11,7 +11,6 @@ export default defineType({ defineField({ name: 'email', title: 'Email de contact', type: 'string' }), defineField({ name: 'phone', title: 'Téléphone', type: 'string' }), defineField({ name: 'instagram', title: 'Instagram', type: 'url' }), - defineField({ name: 'linkedin', title: 'LinkedIn', type: 'url' }), defineField({ name: 'heroImages', title: "Images hero page d'accueil", diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 687f7ab..4fad368 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -8,8 +8,11 @@ const year = new Date().getFullYear();
© {year}
diff --git a/src/components/components/Footer.astro b/src/components/components/Footer.astro index 0612861..bacc819 100644 --- a/src/components/components/Footer.astro +++ b/src/components/components/Footer.astro @@ -6,8 +6,11 @@ const year = new Date().getFullYear();
© {year}
@@ -29,7 +32,15 @@ const year = new Date().getFullYear(); color: var(--text-3); } - .ft__links { display: flex; gap: 2rem; } - .ft__links a { color: var(--text-3); transition: color 0.2s; } - .ft__links a:hover { color: var(--text); } + .ft__links { + display: flex; + gap: 2rem; + } + .ft__links a { + color: var(--text-3); + transition: color 0.2s; + } + .ft__links a:hover { + color: var(--text); + } diff --git a/src/pages/contact.astro b/src/pages/contact.astro index 567349f..e857b0a 100644 --- a/src/pages/contact.astro +++ b/src/pages/contact.astro @@ -1,11 +1,11 @@ --- -import BaseLayout from '../layouts/BaseLayout.astro'; +import BaseLayout from "../layouts/BaseLayout.astro"; const stripImages = [ - { src: '/images/events/engie/04.jpg', alt: 'Engie' }, - { src: '/images/events/la-premiere/02.jpeg', alt: 'La Première' }, - { src: '/images/perennes/devoteam/03.jpg', alt: 'Devoteam' }, - { src: '/images/events/dior/09.jpeg', alt: 'Dior' }, + { src: "/images/events/engie/04.jpg", alt: "Engie" }, + { src: "/images/events/la-premiere/02.jpeg", alt: "La Première" }, + { src: "/images/perennes/devoteam/03.jpg", alt: "Devoteam" }, + { src: "/images/events/dior/09.jpeg", alt: "Dior" }, ]; --- @@ -17,42 +17,73 @@ const stripImages = [ parlons projet - +
réseaux
- +
-
+
- +
- +
- +
@@ -63,17 +94,19 @@ const stripImages = [
- {stripImages.map((img, i) => ( -
- {img.alt} -
- ))} + { + stripImages.map((img, i) => ( +
+ {img.alt} +
+ )) + }