import type { Metadata } from "next";

const baseUrl = process.env.NEXT_PUBLIC_APP_URL || "https://www.adultworld.ai";

export const metadata: Metadata = {
  title: "AI Matchmaker",
  description: "Let our AI find your perfect escort match. Describe your preferences and get personalized recommendations.",
  alternates: { canonical: `${baseUrl}/matchmaker` },
  openGraph: {
    title: "AI Matchmaker | AdultWorld",
    description: "Let our AI find your perfect escort match. Describe your preferences and get personalized recommendations.",
    url: `${baseUrl}/matchmaker`,
  },
  twitter: {
    card: "summary_large_image",
    title: "AI Matchmaker | AdultWorld",
    description: "Let our AI find your perfect escort match.",
  },
};

export default function MatchmakerLayout({ children }: { children: React.ReactNode }) {
  return children;
}
