()
| 5 | import NotFoundContent from "@theme/NotFound/Content"; |
| 6 | |
| 7 | export default function Index(): JSX.Element { |
| 8 | const title = translate({ |
| 9 | id: "theme.NotFound.title", |
| 10 | message: "Page Not Found", |
| 11 | }); |
| 12 | |
| 13 | return ( |
| 14 | <> |
| 15 | <PageMetadata title={title} /> |
| 16 | <Layout> |
| 17 | <NotFoundContent /> |
| 18 | </Layout> |
| 19 | </> |
| 20 | ); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected