/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React from 'react'; import Layout from '@theme/Layout'; import useBaseUrl from '@docusaurus/useBaseUrl'; import Translate, { translate } from '@docusaurus/Translate'; import SvgDots from '@site/src/svg/Dots'; import Typed from '@theme/Typed'; function NotFound() { return (
404

_ ${translate({ message: 'Page not found', description: '404 message', })}`, ]} typeSpeed={75} />

Back to homepage
); } export default NotFound;