This commit is contained in:
2025-07-14 01:26:24 +09:00
parent a8faf0f7e5
commit de401cdd21
3 changed files with 21 additions and 7 deletions
+14 -6
View File
@@ -1,5 +1,6 @@
import { Helmet } from 'react-helmet-async'
import notFoundImg from '@/assets/images/not-found.gif'
import MainArea from '@/components/layout/MainArea'
import { SITE_TITLE } from '@/config'
@@ -7,12 +8,19 @@ import { SITE_TITLE } from '@/config'
export default () => (
<MainArea>
<Helmet>
<meta name="robots" content="noindex" />
<title> () | {SITE_TITLE}</title>
<meta name="robots" content="noindex" />
<title> () | {SITE_TITLE}</title>
</Helmet>
<div className="text-6xl font-bold italic text-transparent whitespace-nowrap
bg-[linear-gradient(90deg,#ff0000,#ff8800,#ffff00,#00ff00,#00ffff,#0000ff,#ff00ff,#ff0000)]
bg-clip-text bg-[length:200%_100%] animate-rainbow-scroll drop-shadow-[0_0_6px_white]">
404<br />
<div className="text-6xl font-bold text-transparent whitespace-nowrap
bg-[linear-gradient(90deg,#ff0000,#ff8800,#ffff00,#00ff00,#00ffff,#0000ff,#ff00ff,#ff0000)]
bg-clip-text bg-[length:200%_100%] animate-rainbow-scroll drop-shadow-[0_0_6px_black]
space-y-6 text-center flex flex-col justify-center items-center">
<p>404</p>
<div className="flex space-x-4">
<p style={{ writingMode: 'vertical-rl' }}></p>
<img src={notFoundImg} alt="404" />
<p style={{ writingMode: 'vertical-rl' }}></p>
</div>
<p className="mr-[-.5em]"></p>
</div>
</MainArea>)