mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-12-31 08:27:43 -08:00
19 lines
459 B
JavaScript
19 lines
459 B
JavaScript
import { translate } from "@docusaurus/Translate";
|
|
import { PageMetadata } from "@docusaurus/theme-common";
|
|
import Layout from "@theme/Layout";
|
|
import NotFoundContent from "@theme/NotFound/Content";
|
|
export default function Index() {
|
|
const title = translate({
|
|
id: "theme.NotFound.title",
|
|
message: "Page Not Found",
|
|
});
|
|
return (
|
|
<>
|
|
<PageMetadata title={title} />
|
|
<Layout>
|
|
<NotFoundContent />
|
|
</Layout>
|
|
</>
|
|
);
|
|
}
|