Files
convex-monorepo/apps/next/src/app/(auth)/profile/layout.tsx

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;