diff options
Diffstat (limited to 'vhosts/blog/nuldoc-src/pages/NotFoundPage.tsx')
| -rw-r--r-- | vhosts/blog/nuldoc-src/pages/NotFoundPage.tsx | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/vhosts/blog/nuldoc-src/pages/NotFoundPage.tsx b/vhosts/blog/nuldoc-src/pages/NotFoundPage.tsx deleted file mode 100644 index 9631fef2..00000000 --- a/vhosts/blog/nuldoc-src/pages/NotFoundPage.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import GlobalFooter from "../components/GlobalFooter.tsx"; -import GlobalHeader from "../components/GlobalHeader.tsx"; -import PageLayout from "../components/PageLayout.tsx"; -import { Config } from "../config.ts"; - -export default function NotFoundPage( - config: Config, -) { - return ( - <PageLayout - metaCopyrightYear={config.blog.siteCopyrightYear} - metaDescription="リクエストされたページが見つかりません" - metaTitle={`Page Not Found|${config.blog.siteName}`} - config={config} - > - <body className="single"> - <GlobalHeader config={config} /> - <main className="main"> - <article> - <div className="not-found">404</div> - </article> - </main> - <GlobalFooter config={config} /> - </body> - </PageLayout> - ); -} |
