import type { Metadata } from 'next' export const metadata: Metadata = { title: 'Mentor Dashboard' } export default function MentorPageLayout({ children }: { children: React.ReactNode }) { return children }