Merge version_26 into main

Merge version_26 into main
This commit was merged in pull request #42.
This commit is contained in:
2026-05-23 09:49:14 +00:00

View File

@@ -45,7 +45,7 @@ export default function GalleryPage() {
</div> </div>
{galleryItems.map((item, index) => ( {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 <FeatureCardOne
title={item.title} title={item.title}
description={item.description} description={item.description}
@@ -54,8 +54,9 @@ export default function GalleryPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false} useInvertedBackground={false}
features={[item]} features={[item]}
gridClassName="gap-8" containerClassName="max-w-7xl mx-auto px-6"
cardClassName="min-h-[400px]" gridClassName="gap-12"
cardClassName="min-h-[500px]"
/> />
</div> </div>
))} ))}