// Scoped 404 for the /dashboard subtree. Fires when a URL is under // `/dashboard/...` but no concrete page matches, and when a loader throws // NotFoundError. The router picks the deepest matching not-found scope. import type { ReactNode } from 'react' import { T } from '@voltro/i18n' export default function DashboardNotFound(): ReactNode { return (

) }