import type { Metadata } from "next";
import NearbyMap from "./NearbyMap";

export const metadata: Metadata = {
  title: "Escorts Nearby - AdultWorld",
  description:
    "Find escorts near your location. View profiles on an interactive map and browse nearby companions.",
};

export default function EscortsNearbyPage() {
  return (
    <div className="space-y-6">
      <h1 className="text-2xl md:text-3xl font-bold">Escorts Nearby</h1>
      <NearbyMap />
    </div>
  );
}
