16 lines
333 B
TypeScript
16 lines
333 B
TypeScript
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}</>;
|
|
}
|