42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import Image from 'next/image';
|
|
import { useTranslations } from 'next-intl';
|
|
import { Section, Container } from '../../components/ui';
|
|
|
|
export default function GallerySection() {
|
|
const t = useTranslations('Home.gallery');
|
|
const images = [
|
|
'/uploads/2024/12/DSC07433-Large-600x400.webp',
|
|
'/uploads/2024/12/DSC07460-Large-600x400.webp',
|
|
'/uploads/2024/12/DSC07469-Large-600x400.webp',
|
|
'/uploads/2024/12/DSC07539-Large-600x400.webp',
|
|
'/uploads/2024/12/DSC07655-Large.webp',
|
|
'/uploads/2024/12/DSC07768-Large.webp',
|
|
];
|
|
|
|
return (
|
|
<Section className="bg-white text-neutral-dark py-24">
|
|
<Container>
|
|
<div className="text-center mb-16">
|
|
<h2 className="text-4xl md:text-5xl font-bold">{t('title')}</h2>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
|
{images.map((src, idx) => (
|
|
<div key={idx} className="relative aspect-[4/3] overflow-hidden rounded-lg group">
|
|
<Image
|
|
src={src}
|
|
alt={`${t('alt')} ${idx + 1}`}
|
|
fill
|
|
className="object-cover transition-transform duration-500 group-hover:scale-110"
|
|
unoptimized
|
|
/>
|
|
<div className="absolute inset-0 bg-black/20 group-hover:bg-transparent transition-colors" />
|
|
</div>
|
|
))}
|
|
</div>
|
|
</Container>
|
|
</Section>
|
|
);
|
|
}
|