-
Notifications
You must be signed in to change notification settings - Fork 12
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
3 changed files
with
28 additions
and
1 deletion.
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,27 @@ | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
export default function NotFound() { | ||
return ( | ||
<main className="flex flex-col items-center justify-center p-3 h-[100svh]"> | ||
<div className="flex items-center gap-3"> | ||
<Image | ||
src="/ouranos.svg" | ||
alt="Ouranos logo" | ||
width={40} | ||
height={40} | ||
className="block transition-transform ease-in-out duration-700 hover:rotate-180" | ||
/> | ||
<Image | ||
src="/ouranosText.svg" | ||
alt="Ouranos text" | ||
width={70} | ||
height={20} | ||
/> | ||
</div> | ||
<h1 className="text-center text-lg sm:text-xl mt-2"> | ||
The page you are looking for could not be found | ||
</h1> | ||
</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