7 lines
161 B
JavaScript
7 lines
161 B
JavaScript
import { notFound } from "next/navigation";
|
|
|
|
export default function DashboardCatchAll() {
|
|
// Always call notFound() for unknown routes
|
|
return notFound();
|
|
}
|