We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae66dd2 commit 11c092bCopy full SHA for 11c092b
app/[locale]/not-found.tsx
@@ -1,6 +1,7 @@
1
'use client';
2
3
import { ArrowRightIcon } from '@heroicons/react/24/solid';
4
+import Image from 'next/image';
5
import { useTranslations } from 'next-intl';
6
import type { FC } from 'react';
7
@@ -17,6 +18,14 @@ const NotFoundPage: FC = () => {
17
18
<main>
19
404
20
<h1 className="special -mt-4">{t('layouts.error.notFound.title')}</h1>
21
+ <div className="my-4 flex items-center justify-center">
22
+ <Image
23
+ src="/static/images/node-mascot.svg"
24
+ alt="The Node.js mascot"
25
+ height={114.69}
26
+ width={100}
27
+ />
28
+ </div>
29
<p className="-mt-4 max-w-sm text-center text-lg">
30
{t('layouts.error.notFound.description')}
31
</p>
0 commit comments