diff --git a/src/components/custom/ImageGalleryGrid.tsx b/src/components/custom/ImageGalleryGrid.tsx index d95c7d5..fb0d665 100644 --- a/src/components/custom/ImageGalleryGrid.tsx +++ b/src/components/custom/ImageGalleryGrid.tsx @@ -8,30 +8,63 @@ type ImageProps = { }; type Props = { + tag?: string; + title: string; + description?: string; images: ImageProps[]; }; -export default function ImageGalleryGrid({ images }: Props) { +export default function ImageGalleryGrid({ tag, title, description, images }: Props) { return ( -

Our Industries

+ {tag && ( + + {tag} + + )} + + {title} + + {description && ( + + {description} + + )}
{images.map((image, index) => ( -
+
{image.alt} -
-

{image.title}

-

{image.description}

+
+

{image.title}

+

{image.description}

))} diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index b5e2ced..52e0199 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -34,6 +34,9 @@ export default function HomePage() {