import Link from 'next/link' import { getI18n } from '@/i18n/i18n.server' export interface ErrorPageProps { statusCode: number message: string } export const ErrorPage: React.FC = (props) => { const { message, statusCode } = props const i18n = getI18n() return (

{i18n.translate('errors.error')}{' '} {statusCode}

{message}{' '} {i18n.translate('errors.return-to-home-page')}

) }