params is a Promise so you need to await it... like below
Const Page = async ({ params }: Promise<{ id: string}>) =>{ Const { id } = await params; }