21 lines
413 B
TypeScript
21 lines
413 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Account Settings",
|
|
description:
|
|
"Manage your RE-Quest account settings, profile information, privacy preferences, and notification settings.",
|
|
|
|
robots: {
|
|
index: false,
|
|
follow: false,
|
|
},
|
|
};
|
|
|
|
export default function SettingsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <>{children}</>;
|
|
}
|