File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1- 'use client' ;
2-
31import { ArrowRightIcon } from '@heroicons/react/24/solid' ;
42import Image from 'next/image' ;
53import { useTranslations } from 'next-intl' ;
@@ -13,10 +11,12 @@ const NotFoundPage: FC = () => {
1311
1412 return (
1513 < GlowingBackdropLayout kind = "default" >
16- 404
14+ < span > 404</ span >
15+
1716 < h1 className = "special -mt-4 text-center" >
1817 { t ( 'layouts.error.notFound.title' ) }
1918 </ h1 >
19+
2020 < div className = "my-4 flex h-[150px] items-center justify-center md:h-[300px]" >
2121 < div className = "turtle motion-safe:animate-surf motion-reduce:animate-none" >
2222 < Image
@@ -27,9 +27,11 @@ const NotFoundPage: FC = () => {
2727 />
2828 </ div >
2929 </ div >
30+
3031 < p className = "-mt-4 max-w-sm text-center text-lg" >
3132 { t ( 'layouts.error.notFound.description' ) }
3233 </ p >
34+
3335 < Button href = "/" >
3436 { t ( 'layouts.error.backToHome' ) }
3537 < ArrowRightIcon />
Original file line number Diff line number Diff line change 1- 'use client' ;
2-
31import { ArrowRightIcon } from '@heroicons/react/24/solid' ;
42import type { FC } from 'react' ;
53
@@ -12,11 +10,14 @@ const GlobalErrorPage: FC<{ error: Error }> = () => (
1210 < body >
1311 < BaseLayout >
1412 < GlowingBackdropLayout >
15- 500
13+ < span > 500</ span >
14+
1615 < h1 className = "special -mt-4 text-center" > Internal Server Error</ h1 >
16+
1717 < p className = "-mt-4 max-w-sm text-center text-lg" >
1818 This page has thrown a non-recoverable error.
1919 </ p >
20+
2021 < Button href = "/" >
2122 Back to Home
2223 < ArrowRightIcon />
You can’t perform that action at this time.
0 commit comments