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

Entry

Kitchen

Kitchen

Living room

Living room

Bedroom

Bedroom

Bathroom

Bathroom

Closet

Closet

Hallway

Hallway

Garage

Garage

Patio

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" />