import Image from 'next/image' import { Trans } from 'next-i18next' const FourOhFour: React.FC<{ errorMsg: string }> = ({ errorMsg }) => { return (
404
{/* eslint-disable-next-line react/no-unescaped-entities */} Oops, that's a four-oh-four.
{errorMsg}
Press{' '} F12 {' '} and open devtools for more details, or seek help at{' '} onedrive-vercel-index discussions .
) } export default FourOhFour