Since Nextjs 15 params return a promise, so try using
interface PageProps { params: Promise<{ slug: string[]; }>; }
Nextjs doc regarding this