Gallery 3
standard3 ColumnsText Align CenterImage LightboxMultiple ImagesImageGallery Section

Code
relume-gallery3.tsx
type ImageProps = {
url?: string;
src: string;
alt?: string;
};
type Props = {
heading: string;
description: string;
images: ImageProps[];
};
export type Gallery3Props = React.ComponentPropsWithoutRef<"section"> & Partial<Props>;
export const Gallery3 = (props: Gallery3Props) => {
const { heading, description, images } = {
...Gallery3Defaults,
...props,
};
return (
<section className="px-[5%] py-16 md:py-24 lg:py-28">
<div className="container">
<div className="mb-12 text-center md:mb-18 lg:mb-20">
<h2 className="mb-5 text-h2 font-bold md:mb-6">{heading}</h2>
<p className="text-medium">{description}</p>
</div>
<div className="grid grid-cols-1 items-start justify-center gap-6 md:grid-cols-3 md:gap-8">
{images.map((image, index) => (
<a key={index} href={image.url}>
<img
src={image.src}
alt={image.alt}
className="size-full rounded-image object-cover"
/>
</a>
))}
</div>
</div>
</section>
);
};
export const Gallery3Defaults: Props = {
heading: "Image Gallery",
description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
images: [
{
url: "#",
src: "https://d22po4pjz3o32e.cloudfront.net/placeholder-image.svg",
alt: "Relume placeholder image 1",
},
{
url: "#",
src: "https://d22po4pjz3o32e.cloudfront.net/placeholder-image.svg",
alt: "Relume placeholder image 2",
},
{
url: "#",
src: "https://d22po4pjz3o32e.cloudfront.net/placeholder-image.svg",
alt: "Relume placeholder image 3",
},
],
};npm i @radix-ui/react-accordion @radix-ui/react-checkbox @radix-ui/react-label @radix-ui/react-radio-group @radix-ui/react-select @radix-ui/react-slot class-variance-authority@0.7.1 clsx@^2.1.1 motion@^12.15.0 relume-icons@1.3.0 tailwind-merge@^2.2.2


