import { MissingFile } from "~/components/svgs"; import { useTranslation } from "~/providers/I18nProvider"; export const DocNotFoundPage = () => { const { t } = useTranslation(); return (

{t.doc_not_found.titolo}

{t.doc_not_found.sottotitolo}

{t.doc_not_found.CTA}

); };