-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 changed file
with
14 additions
and
11 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 |
---|---|---|
@@ -1,21 +1,24 @@ | ||
import Center from "../components/Center"; | ||
import { Footer } from "../components/Footer"; | ||
import Nav from "../components/Nav"; | ||
import TopBorder from "../components/TopBorder"; | ||
|
||
export default function NotFound() { | ||
return ( | ||
<> | ||
<div className="border-b border-gray-300"> | ||
<Nav title="Leopard" /> | ||
</div> | ||
<div className="mt-8"> | ||
<div className="mx-auto max-w-4xl px-8"> | ||
<h1 className="text-4xl font-bold">404 - Not Found</h1> | ||
<p className="mt-4"> | ||
The page you were looking for could not be found. | ||
</p> | ||
<div className="flex min-h-screen flex-col"> | ||
<TopBorder /> | ||
<Nav title="Leopard" /> | ||
<div className="flex-grow"> | ||
<div className="my-8"> | ||
<Center> | ||
<div className="prose"> | ||
<h1>404 - Not Found</h1> | ||
<p>The page you were looking for could not be found.</p> | ||
</div> | ||
</Center> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</> | ||
</div> | ||
); | ||
} |