feat: add SEO metadata and profile schema
This commit is contained in:
20
src/app/(user)/user/message/layout.tsx
Normal file
20
src/app/(user)/user/message/layout.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Messages",
|
||||
description:
|
||||
"View and manage conversations with real estate professionals through RE-Quest messaging.",
|
||||
|
||||
robots: {
|
||||
index: false,
|
||||
follow: false,
|
||||
},
|
||||
};
|
||||
|
||||
export default function MessageLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user