May 27, 2026SimpleGalleries & Media
UGC Gallery
Image-only carousel for user-generated content. Features square images in a horizontal scrollable track with scroll-snap, a thin scrollbar progress indicator, prev/next arrow controls, and a pill-shaped CTA button that repositions from header to footer on mobile. Inspired by Rhode Skin's 'rhode + you' section.
Preview
Source
import UgcGallery from "./index.jsx";
import { ugcGallery } from "../demo-data.js";
function Placeholder({ height = "60vh", background = "#ffffff" }) {
return (
<div
style={{
height,
background,
display: "flex",
alignItems: "center",
justifyContent: "center",
color: "#ccc",
fontSize: "1rem",
fontFamily: "sans-serif",
letterSpacing: "0.05em",
textTransform: "uppercase",
}}
>
Section Placeholder
</div>
);
}
export default function UgcGalleryDemo() {
return (
<>
<Placeholder />
<UgcGallery {...ugcGallery} />
<Placeholder />
</>
);
}





