-
-
Notifications
You must be signed in to change notification settings - Fork 543
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
10473b7
commit 10df152
Showing
3 changed files
with
45 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,21 @@ | ||
import { Metadata } from "next" | ||
import Link from "next/link" | ||
|
||
export const metadata: Metadata = { | ||
title: "404", | ||
description: "Something went wrong", | ||
} | ||
|
||
export default function NotFound() { | ||
return ( | ||
<div className="flex flex-col items-center justify-center min-h-[calc(100vh-64px)]"> | ||
<h1 className="text-2xl-semi text-gry-900">Page not found</h1> | ||
<p className="text-small-regular text-gray-700"> | ||
The page you tried to access does not exist. | ||
</p> | ||
<Link href="/" className="mt-4 underline text-base-regular text-gray-900"> | ||
Go to frontpage | ||
</Link> | ||
</div> | ||
) | ||
} |
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,21 @@ | ||
import { Metadata } from "next" | ||
import Link from "next/link" | ||
|
||
export const metadata: Metadata = { | ||
title: "404", | ||
description: "Something went wrong", | ||
} | ||
|
||
export default function NotFound() { | ||
return ( | ||
<div className="flex flex-col items-center justify-center min-h-[calc(100vh-64px)]"> | ||
<h1 className="text-2xl-semi text-gry-900">Page not found</h1> | ||
<p className="text-small-regular text-gray-700"> | ||
The page you tried to access does not exist. | ||
</p> | ||
<Link href="/" className="mt-4 underline text-base-regular text-gray-900"> | ||
Go to frontpage | ||
</Link> | ||
</div> | ||
) | ||
} |
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