import { Metadata } from "next"; export const metadata: Metadata = { title: "Forgot Password - Plane", }; export default function ForgotPasswordLayout({ children }: { children: React.ReactNode }) { return children; }