-
Notifications
You must be signed in to change notification settings - Fork 14
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
1 parent
80843ce
commit 7c4e961
Showing
1 changed file
with
29 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import Link from "next/link"; | ||
|
||
export default function Component() { | ||
return ( | ||
<div className="flex min-h-[100dvh] flex-col items-center justify-center bg-white px-4 py-12 sm:px-6 lg:px-8"> | ||
<div className="mx-auto max-w-md text-center"> | ||
<div className="mx-auto h-12 w-12 text-primary" /> | ||
<h1 className="mt-4 text-3xl font-bold tracking-tight text-foreground sm:text-4xl"> | ||
Oops, page not found! | ||
</h1> | ||
<p className="mt-4 text-foreground"> | ||
The page you're looking for doesn't exist. Let's get you back on | ||
track. | ||
</p> | ||
<div className="mt-6"> | ||
<Link | ||
href="#" | ||
className="inline-flex items-center rounded-md border border-gray-300 bg-primary px-4 py-2 text-sm font-medium text-primary-foreground shadow-sm transition-colors duration-300 hover:bg-indigo-700 hover:text-white focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2" | ||
prefetch={false} | ||
> | ||
<span className="text-base sm:text-lg md:text-xl"> | ||
Go to Homepage | ||
</span> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |