Files
frontend/src/app/(auth)/forgot-password/layout.tsx

20 lines
390 B
TypeScript
Raw Normal View History

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}</>;
}