20 lines
390 B
TypeScript
20 lines
390 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Forgot Password",
|
||
|
|
description:
|
||
|
|
"Reset your RE-Quest account password securely and regain access to your account.",
|
||
|
|
robots: {
|
||
|
|
index: false,
|
||
|
|
follow: false,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function ForgotPasswordLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|