Files
frontend/src/app/(user)/user/message/layout.tsx

21 lines
385 B
TypeScript
Raw Normal View History

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