diff --git a/app/assets/scss/component/_header_nav.scss b/app/assets/scss/component/_header_nav.scss
index 9a1dfaa..e5a2ef0 100644
--- a/app/assets/scss/component/_header_nav.scss
+++ b/app/assets/scss/component/_header_nav.scss
@@ -283,7 +283,7 @@
@media (min-width: 900px) {
font-size: 18px;
}
- padding-bottom: 7px;
+ padding-bottom: 3px;
&:hover {
a {
color: var(--c-brand_rouge);
diff --git a/app/components/ContactSpecifique.vue b/app/components/ContactSpecifique.vue
index 02312a9..4c92a6a 100644
--- a/app/components/ContactSpecifique.vue
+++ b/app/components/ContactSpecifique.vue
@@ -7,9 +7,9 @@
@@ -21,9 +21,9 @@
titre: { type: String, required: true },
nom: { type: String, required: true },
poste: { type: String, required: true },
- numero: { type: String, required: true },
+ numero: { type: String, default: '' },
mail: { type: String, required: true },
- adresse: { type: String, required: true}
+ adresse: { type: String, default: ''}
})
diff --git a/app/components/concert/ConcertCard.vue b/app/components/concert/ConcertCard.vue
index c193758..9678b2c 100644
--- a/app/components/concert/ConcertCard.vue
+++ b/app/components/concert/ConcertCard.vue
@@ -68,6 +68,19 @@
align-items: start;
}
+ .concert-card__media {
+ width: 100%;
+ aspect-ratio: 1 / 1;
+ background: rgba(0, 0, 0, 0.04);
+ overflow: hidden;
+
+ .ds-media,
+ .musicien_card_media-placeholder {
+ width: 100%;
+ height: 100%;
+ }
+ }
+
.concert-card__content {
display: grid;
gap: var(--sp-6);
diff --git a/app/pages/index.vue b/app/pages/index.vue
index f1e312f..3a89679 100644
--- a/app/pages/index.vue
+++ b/app/pages/index.vue
@@ -65,10 +65,7 @@
-
+
+
+
+
+
+
+
+
+
+
-
@@ -125,6 +158,28 @@
import DsMedia from '@root/design-system/primitives/DsMedia.vue'
import { computed } from 'vue'
+ useHead({
+ link: [
+ {
+ rel: 'preconnect',
+ href: 'https://fonts.googleapis.com',
+ },
+ {
+ rel: 'preconnect',
+ href: 'https://fonts.gstatic.com',
+ crossorigin: '',
+ },
+ {
+ rel: 'stylesheet',
+ href: 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap',
+ },
+ {
+ rel: 'stylesheet',
+ href: 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap',
+ },
+ ],
+ })
+
// ======================================
// RÉCUPÉRATION DES DONNÉES DANS STRAPI
// ======================================
diff --git a/app/pages/professionnels/parc.vue b/app/pages/professionnels/parc.vue
index 68409a3..8b5c0fd 100644
--- a/app/pages/professionnels/parc.vue
+++ b/app/pages/professionnels/parc.vue
@@ -281,7 +281,7 @@
v-model.trim="quoteForm.message"
rows="6"
class="w-full rounded-xl border border-outline-variant/30 bg-white px-4 py-3 text-sm text-on-surface outline-none transition-colors focus:border-primary"
- placeholder="Précisez votre besoin, les dates, le matériel ou l’événement concerné."
+ placeholder="Précisez votre besoin, les dates de retrait et retour (le Parc est fermé le weekend). Nous ne faisons pas de livraisons."
>
{{ quoteFormErrors.message }}
diff --git a/tailwind.config.js b/tailwind.config.js
index 3c3f70d..b99c3bf 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -64,6 +64,8 @@ export default {
'surface-container-lowest': '#ffffff',
'surface-dim': '#cdd9ff',
'on-secondary': '#f7f9ff',
+ 'secondary-brand-container': '#e3061338',
+ 'primary-brand-container': '#E20018',
},
borderRadius: {
DEFAULT: '0.125rem',