// Scoped 404 for the /dashboard subtree. Fires when a URL is under // `/dashboard/...` but no concrete page matches (e.g. /dashboard/nope), and // when a loader throws NotFoundError. The router picks the deepest matching // not-found scope, so this handles dashboard misses while the rest of the // app falls back to the router default. import type { ReactNode } from 'react' import { T } from '@voltro/i18n' export default function DashboardNotFound(): ReactNode { return (

) }