Compare commits

...

2 Commits

Author SHA1 Message Date
8aa2dccec1 Update src/app/gallery/page.tsx 2026-05-23 09:49:08 +00:00
e32f65e1d1 Merge version_25 into main
Merge version_25 into main
2026-05-23 09:47:52 +00:00

View File

@@ -45,7 +45,7 @@ export default function GalleryPage() {
</div>
{galleryItems.map((item, index) => (
<div key={index} id={`gallery-${index}`} data-section="gallery" className="py-12 border-b border-gray-100">
<div key={index} id={`gallery-${index}`} data-section="gallery" className="py-24 border-b border-gray-100">
<FeatureCardOne
title={item.title}
description={item.description}
@@ -54,8 +54,9 @@ export default function GalleryPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[item]}
gridClassName="gap-8"
cardClassName="min-h-[400px]"
containerClassName="max-w-7xl mx-auto px-6"
gridClassName="gap-12"
cardClassName="min-h-[500px]"
/>
</div>
))}