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 => (
|
||||
<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
|
||||
src="/media/mike.png"
|
||||
alt="Mike Wazowski"
|
||||
width={128}
|
||||
height={128}
|
||||
draggable={false}
|
||||
/>
|
||||
<div className="relative w-24 h-24 xs:w-20 xs:h-20 sm:w-44 sm:h-44">
|
||||
<Image
|
||||
src="/media/mike.png"
|
||||
alt="Mike Wazowski"
|
||||
fill
|
||||
draggable={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Message */}
|
||||
<div className="flex flex-col gap-0.5">
|
||||
<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
|
||||
found.
|
||||
</p>
|
||||
|
Loading…
x
Reference in New Issue
Block a user