forked from flornkm/stickerimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
97 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import Link from "next/link" | ||
|
||
export default function NotFound() { | ||
return ( | ||
<main className="w-full h-screen flex flex-col items-center justify-center px-4"> | ||
<div className="flex flex-col items-center justify-center max-w-sm"> | ||
<h2 className="text-2xl font-semibold mb-4"> | ||
Couldn't find your page | ||
</h2> | ||
<p className="mb-6 text-zinc-500 text-center"> | ||
We searched everywhere but couldn't find the page you were | ||
looking for. | ||
<br /> | ||
<br /> | ||
If you encountered this page by a bug, please report it to me, the | ||
creator of it, on X:{" "} | ||
<Link | ||
href="https://x.com/flornkm" | ||
target="_blank" | ||
className="text-black font-medium underline underline-offset-2 hover:no-underline" | ||
> | ||
@flornkm | ||
</Link> | ||
</p> | ||
<Link | ||
href="/" | ||
className="h-10 truncate px-4 gap-2 md:w-auto w-full font-medium flex items-center justify-center bg-black text-white shadow-md shadow-black/5 transition-colors hover:bg-zinc-800 rounded-lg" | ||
> | ||
Return Home | ||
</Link> | ||
</div> | ||
</main> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters