feat: add SEO metadata and profile schema
This commit is contained in:
20
src/app/(user)/user/settings/layout.tsx
Normal file
20
src/app/(user)/user/settings/layout.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
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}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user