mirror of https://github.com/almqv/wych.dev
parent
ac4b24e4a2
commit
166a4bdb6e
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 629 B |
@ -0,0 +1,26 @@ |
||||
import fonts from "@/components/fonts"; |
||||
import { cn } from "@/lib/utils"; |
||||
import ILink from "@/components/ilink"; |
||||
import Image from "next/image"; |
||||
|
||||
const NotFound = () => ( |
||||
<div |
||||
className={cn( |
||||
"w-full h-full flex flex-col space-y-8 justify-center items-center", |
||||
fonts.mono.className, |
||||
)} |
||||
> |
||||
<Image src="/404.jpg" alt="Error 404\nNot Found" width={400} height={400} /> |
||||
<p className="max-w-md text-foreground/60"> |
||||
Hello, friend. Hello, friend? That's lame. Maybe I should give you a name. |
||||
But that's a slippery slope. You're only in my 404 page. We have to |
||||
remember that. |
||||
</p> |
||||
<div> |
||||
<ILink href="#">Stay</ILink> |
||||
<ILink href="/">Leave</ILink> |
||||
</div> |
||||
</div> |
||||
); |
||||
|
||||
export default NotFound; |
Loading…
Reference in new issue