29 lines
604 B
TypeScript
29 lines
604 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Messages",
|
|
description:
|
|
"View and manage your conversations, client inquiries, and professional communications on RE-Quest.",
|
|
|
|
robots: {
|
|
index: false,
|
|
follow: false,
|
|
},
|
|
|
|
openGraph: {
|
|
title: "Messages",
|
|
description:
|
|
"View and manage your conversations, client inquiries, and professional communications on RE-Quest.",
|
|
siteName: "RE-Quest",
|
|
type: "website",
|
|
},
|
|
};
|
|
|
|
export default function MessageLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|