Gallery3
Last updated
Last updated
The Gallery3
component in your code is designed to display a gallery with images, including a heading and caption. Here's an explanation of the heading
, caption
, and images
props, along with a table to summarize their content.
Component path: src/blocks/gallery/Gallery3.tsx
Component usage path: src/app/blocks/gallery/gallery3/page.tsx
Preview link: https://www.saasable.io/blocks/gallery/gallery3
heading
string
The main title for the gallery section
"Nature Photography"
caption
string
(Optional)
A descriptive subtitle for the gallery section
"A collection of stunning nature shots"
images
GalleryImageList[]
[ { src: '/path/to/image1.jpg', index: 0 }, { src: '/path/to/image2.jpg', index: 1 }, ... ]
Array of image objects with src
and index
properties