21 lines
403 B
TypeScript
21 lines
403 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Edit Profile",
|
||
|
|
description:
|
||
|
|
"Update your professional profile, experience, certifications, availability, and contact information on RE-Quest.",
|
||
|
|
|
||
|
|
robots: {
|
||
|
|
index: false,
|
||
|
|
follow: false,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function EditLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return children;
|
||
|
|
}
|