diff --git a/src/components/photo/pages/PhotoAlbumContent.astro b/src/components/photo/pages/PhotoAlbumContent.astro index 780f511..e2c8862 100644 --- a/src/components/photo/pages/PhotoAlbumContent.astro +++ b/src/components/photo/pages/PhotoAlbumContent.astro @@ -16,10 +16,12 @@ const entryId = getCategoryEntryId(category, lang); const categoryData = await getEntry('photoCategories', entryId) ?? await getEntry('photoCategories', category); const categoryLabel = categoryData?.data.title || category; +const categorySubtitle = categoryData?.data.subtitle || ""; const title = `${categoryLabel} - Jalil Arfaoui`; +const description = `${categoryLabel} — ${categorySubtitle}. Photos par Jalil Arfaoui.`; --- - + diff --git a/src/components/photo/pages/PhotoBlogIndexContent.astro b/src/components/photo/pages/PhotoBlogIndexContent.astro index 1e0ac86..f6a542d 100644 --- a/src/components/photo/pages/PhotoBlogIndexContent.astro +++ b/src/components/photo/pages/PhotoBlogIndexContent.astro @@ -45,7 +45,12 @@ const featuredPosts = postsWithImages.filter(post => post.data.featured); const regularPosts = postsWithImages.filter(post => !post.data.featured); --- - +
diff --git a/src/components/photo/pages/PhotoHomeContent.astro b/src/components/photo/pages/PhotoHomeContent.astro index 1450bf3..60dbb82 100644 --- a/src/components/photo/pages/PhotoHomeContent.astro +++ b/src/components/photo/pages/PhotoHomeContent.astro @@ -12,9 +12,14 @@ interface Props { const { lang = 'fr' } = Astro.props; const title = `${t('photo', 'galleryTitle', lang)} - Jalil Arfaoui`; +const descriptions: Record = { + fr: "Portfolio photo de Jalil Arfaoui. Portraits, paysages, cultures, musique, nature, sports, moteurs, quotidien.", + en: "Jalil Arfaoui's photo portfolio. Portraits, landscapes, cultures, music, nature, sports, engines, everyday life.", + ar: "معرض صور جليل عرفاوي. بورتريهات، مناظر طبيعية، ثقافات، موسيقى، طبيعة، رياضة، محرّكات، حياة يومية.", +}; --- - +