make the 404 page more responsive
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m5s
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m5s
Took 6 minutes
This commit is contained in:
parent
e26a9e0267
commit
7c6fd8a5ef
@ -8,20 +8,21 @@ import Image from "next/image";
|
|||||||
*/
|
*/
|
||||||
const NotFoundPage = (): ReactElement => (
|
const NotFoundPage = (): ReactElement => (
|
||||||
<main className="w-full pt-[25vh] min-h-screen flex justify-center select-none pointer-events-none">
|
<main className="w-full pt-[25vh] min-h-screen flex justify-center select-none pointer-events-none">
|
||||||
<div className="h-fit flex gap-10">
|
<div className="h-fit flex gap-5 sm:gap-10 items-center transition-all transform-gpu">
|
||||||
{/* Image */}
|
{/* Image */}
|
||||||
<Image
|
<div className="relative w-24 h-24 xs:w-20 xs:h-20 sm:w-44 sm:h-44">
|
||||||
src="/media/mike.png"
|
<Image
|
||||||
alt="Mike Wazowski"
|
src="/media/mike.png"
|
||||||
width={128}
|
alt="Mike Wazowski"
|
||||||
height={128}
|
fill
|
||||||
draggable={false}
|
draggable={false}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Message */}
|
{/* Message */}
|
||||||
<div className="flex flex-col gap-0.5">
|
<div className="flex flex-col gap-0.5">
|
||||||
<h1 className="text-3xl font-bold">Wrong Door!</h1>
|
<h1 className="text-3xl font-bold">Wrong Door!</h1>
|
||||||
<p className="max-w-72 text-lg opacity-75">
|
<p className="max-w-72 sm:text-lg opacity-75">
|
||||||
The documentation page you were looking for could not be
|
The documentation page you were looking for could not be
|
||||||
found.
|
found.
|
||||||
</p>
|
</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user