import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Contact Us",
  description: "Get in touch with AdultWorld. Send us a message for support, feedback, or business inquiries.",
  openGraph: {
    title: "Contact Us | AdultWorld",
    description: "Get in touch with AdultWorld for support, feedback, or business inquiries.",
  },
};

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