feat: add SEO metadata and profile schema
This commit is contained in:
15
src/app/about/layout.tsx
Normal file
15
src/app/about/layout.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
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}</>;
|
||||
}
|
||||
Reference in New Issue
Block a user