15 lines
276 B
TypeScript
15 lines
276 B
TypeScript
import type { Metadata } from 'next';
|
|
|
|
export const generateMetadata = (): Metadata => {
|
|
return {
|
|
title: 'Profile',
|
|
};
|
|
};
|
|
|
|
const ProfileLayout = ({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) => {
|
|
return <>{children}</>;
|
|
};
|
|
export default ProfileLayout;
|