Merge version_4_1779312235323 into main #2

Merged
bender merged 1 commits from version_4_1779312235323 into main 2026-05-20 21:24:42 +00:00

View File

@@ -18,10 +18,10 @@ export default function ImageGalleryGrid({ images }: Props) {
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, amount: 0.2 }}
transition={{ duration: 0.6 }}
className="container mx-auto py-12 px-4"
className="container mx-auto py-12 px-4 md:py-20"
>
<h2 className="text-4xl font-bold text-center mb-8">Our Industries</h2>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<h2 className="text-4xl font-bold text-center mb-8 md:text-5xl lg:text-6xl text-foreground">Our Industries</h2>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 md:gap-8">
{images.map((image, index) => (
<div key={index} className="relative group overflow-hidden rounded-lg shadow-lg">
<img