import { redirect } from "next/navigation";

// The CEFP section has no standalone dashboard page — its sidebar "Dashboard"
// group lands on Plenary, same as the PSWG and CDC dashboard redirects.
export default function CefpDashboardPage() {
    redirect("/cefp/dashboard/plenary");
}
