import UserPage from './UserPage'; import { Metadata } from 'next'; export default async function ({ params }: { params: { userId: string } }) { const { userId } = await params; return ; } export const metadata: Metadata = { title: 'User Settings', };