Files
frontend/src/app/(user)/user/message/layout.tsx
2026-06-18 14:37:55 +05:30

21 lines
385 B
TypeScript

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