Gallery 7
standard2 ColumnsText Align CenterImage LightboxMultiple ImagesImageGallery Section

Code
relume-gallery7.tsx
import clsx from "clsx";
type ImageProps = {
url?: string;
src: string;
alt?: string;
};
type Props = {
heading: string;
description: string;
images: ImageProps[];
};
export type Gallery7Props = React.ComponentPropsWithoutRef<"section"> & Partial<Props>;
export const Gallery7 = (props: Gallery7Props) => {
const { heading, description, images } = {
...Gallery7Defaults,
...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 auto-cols-fr justify-center gap-6 md:grid-cols-2 md:gap-8">
{images.map((image, index) => (
<a
key={index}
href={image.url}
className={clsx("inline-block w-full", {
"col-start-1 col-end-2 row-start-1 row-end-3": index === 0,
})}
>
<div
className={clsx("relative size-full", {
"pt-[100%]": index === 0,
"pt-[56.25%]": index !== 0,
})}
>
<img
src={image.src}
alt={image.alt}
className="absolute inset-0 size-full rounded-image object-cover"
/>
</div>
</a>
))}
</div>
</div>
</section>
);
};
export const Gallery7Defaults: 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-checkbox @radix-ui/react-dialog @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


