// 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"); }