Files

9 lines
263 B
TypeScript
Raw Permalink Normal View History

import type { Metadata } from "next";
import { ForgotPasswordForm } from "@/components/auth/forgot-password-form";
export const metadata: Metadata = { title: "Forgot password" };
export default function ForgotPasswordPage() {
return <ForgotPasswordForm />;
}