meshtastic/src/theme/NotFound/index.js
Sacha Weatherstone c9e67a8ec9
format src
2024-01-06 11:04:40 +10:00

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>
</>
);
}