import { auth } from "@/auth"; import { NotAuthorized, ShellEmpty } from "@/components/ShellEmpty"; import type { SessionWithExtras } from "@/lib/session"; import { canSee } from "@/lib/session"; export default async function Page() { const session = (await auth()) as SessionWithExtras | null; if (!canSee(session, "support")) return ; return ( ); }