Gallery
Plain shots carousel — prev/next, arrow-key nav, and dot indicators over a fixed image list. Demoed against 2806 Prado St's own interior stills.

Entry

Kitchen

Living room

Bedroom

Bathroom

Closet

Hallway

Garage

Patio
Usage
import { Gallery } from "@/components/Gallery";
import type { GalleryImage } from "@/components/Gallery";
const images: GalleryImage[] = [
{ src: "/gallery-samples/front.jpg", alt: "Front elevation" },
{ src: "/gallery-samples/back.jpg", alt: "Back yard", caption: "Back yard, dusk" },
];
<Gallery images={images} className="h-full w-full" />