import type { ReactNode } from 'react'; interface NotFoundPageProps { title?: string; message?: string; onBack?: () => void; } export function NotFoundPage({ title = 'Page Not Found', message = 'The page you are looking for does not exist.', onBack, }: NotFoundPageProps): ReactNode { return (
{message}
{onBack && ( )}