Files
KAFM-Project/app/dashboard/page.tsx

7 lines
238 B
TypeScript

// app/dashboard/page.tsx
import { redirect } from "next/navigation";
export default function DashboardBasePage() {
// Automatically redirect the user to the actual overview dashboard page
redirect("/dashboard/overview/dashboard");
}