import { redirect } from "next/navigation"; import { auth } from "@/server/auth"; import { landingPath } from "@/server/app-access"; export default async function Home() { // Feldrollen → /m, Backoffice → /dashboard (ARCHITEKTUR §5) redirect(landingPath(await auth())); }