Files
frontend/src/app/about/layout.tsx

16 lines
333 B
TypeScript
Raw Normal View History

import type { Metadata } from "next";
export const metadata: Metadata = {
title: "About Us",
description:
"Learn about RE-Quest and our mission to connect users with trusted real estate professionals.",
};
export default function AboutLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}