← back to Homesonspec

apps/web/src/app/map/page.tsx

14 lines

import MapExplorer from "./MapExplorer";

export const dynamic = "force-dynamic";

export const metadata = {
  title: "Map Explorer | HomesOnSpec",
  description:
    "Explore every verified new home on an interactive map. Toggle by construction status, price, bedrooms, and builder to filter what shows.",
};

export default function MapPage() {
  return <MapExplorer />;
}