From 14986a718655ed8c571052b4942f61ee62fd73a0 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Tue, 1 Jul 2025 21:09:44 +0900 Subject: [PATCH] #24 --- frontend/src/pages/NotFound.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 frontend/src/pages/NotFound.tsx diff --git a/frontend/src/pages/NotFound.tsx b/frontend/src/pages/NotFound.tsx new file mode 100644 index 0000000..d72df89 --- /dev/null +++ b/frontend/src/pages/NotFound.tsx @@ -0,0 +1,14 @@ +import { Helmet } from 'react-helmet' + +import MainArea from '@/components/layout/MainArea' +import { SITE_TITLE } from '@/config' + + +export default () => ( + + + + ページないよ (笑) | {SITE_TITLE} + + Not Found + )