import { Home } from 'lucide-preact'; import { t } from '@/lib/i18n'; interface NotFoundPageProps { title?: string; message?: string; homeHref?: string; } export default function NotFoundPage(props: NotFoundPageProps) { return (
NodeWarden logo
404

{props.title || t('txt_page_not_found')}

{props.message || t('txt_page_not_found_hint')}

{t('txt_back_to_home')}
); }