diff --git a/src/assets/images/a-nous-les-chemins.jpg b/src/assets/images/a-nous-les-chemins.jpg new file mode 100644 index 0000000..5dda559 Binary files /dev/null and b/src/assets/images/a-nous-les-chemins.jpg differ diff --git a/src/components/photo/ExploreSection.astro b/src/components/photo/ExploreSection.astro index f210ca6..8def0ff 100644 --- a/src/components/photo/ExploreSection.astro +++ b/src/components/photo/ExploreSection.astro @@ -1,6 +1,8 @@ --- +import { Image } from 'astro:assets'; import { getLocalizedCollection } from '../../utils/content-i18n'; import { t, getPhotoBlogPath, getPhotoAlbumsPath, type Locale } from '../../utils/i18n'; +import exhibitionImage from '../../assets/images/a-nous-les-chemins.jpg'; interface Props { lang?: Locale; @@ -11,34 +13,123 @@ const { lang = 'fr' } = Astro.props; // Récupérer les catégories filtrées par langue const sortedCategories = (await getLocalizedCollection('photoCategories', lang)) .sort((a, b) => (a.data.order || 99) - (b.data.order || 99)); + +const exhibition = { + fr: { + label: "Exposition en cours", + title: "« À nous les chemins ! »", + description: "Exposition collective itinérante de photographies avec l'association Albi Tadam, dans le cadre de « En 2026, la culture sillonne le Tarn ».", + venues: [ + { dates: "4 avril – 25 mai", place: "Musée-mine départemental, Cagnac-les-Mines" }, + { dates: "1er – 26 juin", place: "Mairie de Pampelonne" }, + { dates: "1er – 31 juillet", place: "Communauté de Communes Sor et Agout, Saïx" }, + { dates: "4 – 28 août", place: "Musée de la vie paysanne, Rieumontagné" }, + { dates: "3 – 30 sept.", place: "Pan'art, Castres" }, + { dates: "6 – 31 oct.", place: "Médiathèque, Saint-Sulpice" }, + { dates: "4 – 28 nov.", place: "Espace Reynès, Albi" }, + { dates: "1er – 24 déc.", place: "Archives départementales du Tarn, Albi" }, + ], + vernissage: "Vernissage le samedi 18 avril à 17h au Musée-mine départemental, Cagnac-les-Mines.", + free: "Entrée libre", + imageAlt: "Affiche de l'exposition « À nous les chemins ! » par Albi Tadam — escalier illuminé aux couleurs bleu, blanc, rouge, photo de Candic Clavel-Deandington", + }, + en: { + label: "Current exhibition", + title: '"The Paths Are Ours!"', + description: "Itinerant collective photography exhibition with the Albi Tadam association, as part of 'In 2026, culture travels through the Tarn'.", + venues: [ + { dates: "April 4 – May 25", place: "Musée-mine départemental, Cagnac-les-Mines" }, + { dates: "June 1 – 26", place: "Mairie de Pampelonne" }, + { dates: "July 1 – 31", place: "Communauté de Communes Sor et Agout, Saïx" }, + { dates: "Aug. 4 – 28", place: "Musée de la vie paysanne, Rieumontagné" }, + { dates: "Sept. 3 – 30", place: "Pan'art, Castres" }, + { dates: "Oct. 6 – 31", place: "Médiathèque, Saint-Sulpice" }, + { dates: "Nov. 4 – 28", place: "Espace Reynès, Albi" }, + { dates: "Dec. 1 – 24", place: "Archives départementales du Tarn, Albi" }, + ], + vernissage: "Opening reception: Saturday, April 18 at 5 PM, Musée-mine départemental, Cagnac-les-Mines.", + free: "Free admission", + imageAlt: "Exhibition poster 'The Paths Are Ours!' by Albi Tadam — stairway lit in blue, white and red, photo by Candic Clavel-Deandington", + }, + ar: { + label: "معرض جارٍ", + title: "« !الدروب لنا »", + description: "معرض تصوير جماعي متنقل مع جمعية ألبي تادام، ضمن برنامج « في 2026، الثقافة تجوب التارن ».", + venues: [ + { dates: "4 أبريل – 25 مايو", place: "متحف المنجم الإقليمي، كانياك لي مين" }, + { dates: "1 – 26 يونيو", place: "بلدية بامبلون" }, + { dates: "1 – 31 يوليو", place: "مجموعة بلديات سور وأغو، سايكس" }, + { dates: "4 – 28 أغسطس", place: "متحف الحياة الريفية، ريومونتانيي" }, + { dates: "3 – 30 سبتمبر", place: "بان آر، كاستر" }, + { dates: "6 – 31 أكتوبر", place: "المكتبة الوسائطية، سان سولبيس" }, + { dates: "4 – 28 نوفمبر", place: "فضاء رينيس، ألبي" }, + { dates: "1 – 24 ديسمبر", place: "الأرشيف الإقليمي للتارن، ألبي" }, + ], + vernissage: "حفل الافتتاح: السبت 18 أبريل الساعة 17:00، متحف المنجم الإقليمي، كانياك لي مين.", + free: "الدخول مجاني", + imageAlt: "ملصق معرض « !الدروب لنا » من ألبي تادام — درج مضاء بالأزرق والأبيض والأحمر", + }, +}; + +const exh = exhibition[lang]; ---
-
-

{t('photo', 'categories', lang)}

-

{t('photo', 'browseByTheme', lang)}

- +
+
+ + {exh.imageAlt} + +
+ {exh.label} +

{exh.title}

+

{exh.description}

+
    + {exh.venues.map((v) => ( +
  • + {v.dates} + {v.place} +
  • + ))} +
+

{exh.vernissage}

+

{exh.free}

+
+
-
-

{t('photo', 'photoFeed', lang)}

-

{t('photo', 'feedDescription', lang)}

- - {t('photo', 'viewFeed', lang)} - - - - - +
+
+

{t('photo', 'categories', lang)}

+

{t('photo', 'browseByTheme', lang)}

+ +
+ +
+

{t('photo', 'photoFeed', lang)}

+

{t('photo', 'feedDescription', lang)}

+ + {t('photo', 'viewFeed', lang)} + + + + + +
@@ -69,11 +160,17 @@ const sortedCategories = (await getLocalizedCollection('photoCategories', lang)) .explore-content { display: flex; + flex-direction: column; gap: 3rem; max-width: 900px; width: 100%; } +.explore-row { + display: flex; + gap: 3rem; +} + .explore-card { flex: 1; padding: 2rem; @@ -96,6 +193,82 @@ const sortedCategories = (await getLocalizedCollection('photoCategories', lang)) line-height: 1.5; } +/* Exhibition banner */ +.exhibition-banner { + padding: 2rem; + background: rgba(16, 185, 129, 0.08); + border: 1px solid rgba(16, 185, 129, 0.2); + border-radius: 12px; +} + +.exhibition-layout { + display: flex; + gap: 2rem; + align-items: flex-start; +} + +.exhibition-image { + flex-shrink: 0; +} + +.exhibition-img { + border-radius: 10px; + border: 1px solid rgba(255, 255, 255, 0.1); +} + +.exhibition-info { + flex: 1; +} + +.exhibition-label { + display: inline-block; + padding: 0.25rem 0.7rem; + margin-bottom: 0.75rem; + font-size: 0.75rem; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.05em; + color: rgba(16, 185, 129, 0.9); + background: rgba(16, 185, 129, 0.15); + border-radius: 20px; +} + +.venue-list { + list-style: none; + margin: 0 0 1rem; + padding: 0; + display: grid; + grid-template-columns: 1fr 1fr; + gap: 0.4rem 2rem; +} + +.venue-item { + font-size: 0.85rem; +} + +.venue-dates { + font-weight: 500; + color: rgba(255, 255, 255, 0.85); +} + +.venue-place { + color: rgba(255, 255, 255, 0.5); +} + +.exhibition-vernissage { + margin: 0 0 0.25rem; + font-size: 0.85rem; + font-style: italic; + color: rgba(16, 185, 129, 0.7); +} + +.exhibition-free { + margin: 0; + font-size: 0.85rem; + font-weight: 600; + color: rgba(16, 185, 129, 0.9); +} + .category-list { list-style: none; margin: 0; @@ -146,7 +319,7 @@ const sortedCategories = (await getLocalizedCollection('photoCategories', lang)) padding: 3rem 1.25rem; } - .explore-content { + .explore-row { flex-direction: column; gap: 2rem; } @@ -154,5 +327,23 @@ const sortedCategories = (await getLocalizedCollection('photoCategories', lang)) .explore-card { padding: 1.5rem; } + + .exhibition-layout { + flex-direction: column; + gap: 1.5rem; + } + + .exhibition-image { + display: flex; + justify-content: center; + } + + .exhibition-banner { + padding: 1.5rem; + } + + .venue-list { + grid-template-columns: 1fr; + } } diff --git a/src/pages/ar/index.astro b/src/pages/ar/index.astro index b3bd3cd..c379868 100644 --- a/src/pages/ar/index.astro +++ b/src/pages/ar/index.astro @@ -134,9 +134,14 @@ const recommendationCount = (await getCollection("recommendations")).length;

التصوير

-

+

أصوّر كل شيء تقريبًا: وجوه، حفلات، محرّكات، الحياة اليومية. لا تخصّص، مجرّد فضول.

+
+

+ معرض متنقل « !الدروب لنا » مع ألبي تادام — أبريل إلى ديسمبر 2026، في التارن +

+
← معرض الصور diff --git a/src/pages/en/index.astro b/src/pages/en/index.astro index ac9eb2c..0fca9f8 100644 --- a/src/pages/en/index.astro +++ b/src/pages/en/index.astro @@ -134,9 +134,14 @@ const recommendationCount = (await getCollection("recommendations")).length;

Photography

-

+

I photograph a bit of everything: faces, concerts, engines, everyday life. No specialty, just curiosity.

+
+

+ Itinerant exhibition "The Paths Are Ours!" with Albi Tadam — April to December 2026, in the Tarn +

+
→ Photo portfolio diff --git a/src/pages/index.astro b/src/pages/index.astro index 4724ca2..d222d5f 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -134,9 +134,14 @@ const recommendationCount = (await getCollection("recommendations")).length;

Photographie

-

+

Je photographie un peu tout : des visages, des concerts, des moteurs, le quotidien. Pas de spécialité, juste la curiosité.

+
+

+ Expo itinérante « À nous les chemins ! » avec Albi Tadam — avril à décembre 2026, dans le Tarn +

+
→ Portfolio photo @@ -151,7 +156,7 @@ const recommendationCount = (await getCollection("recommendations")).length;
-