Hey I was also having the same video/issue
The auth is being exported from @clerk/nextjs/server Updated doc on auth()and it is asynchronous function
use this while importing it
import { auth } from "@clerk/nextjs/server"
and
const page = async () => {
const { userId } = await auth(); ...
}