-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create not-found.tsx in Opportunities
Add customized 404 for Opportunities
- Loading branch information
Showing
1 changed file
with
26 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,26 @@ | ||
import { Mark404 } from "~/components/Mark404"; | ||
|
||
export default async function Page() { | ||
return ( | ||
<main className="m-auto flex max-w-content flex-col gap-20 px-7 py-20"> | ||
<Mark404 /> | ||
<section> | ||
<h1 className="typo-title mb-4 mt-20 text-center"> | ||
404: Stránka nenalezena | ||
</h1> | ||
<p className="m-auto max-w-prose"> | ||
Na tomto místě se dříve nacházela otevřená role. | ||
Zobrazuje-li se nyní tento text, znamená to, že už daná role není aktuální. | ||
Díky za pochopení! | ||
Všechny otevřené role můžete najít | ||
<a | ||
href="https://app.cesko.digital/opportunities" | ||
className="typo-link" | ||
> | ||
tady. | ||
</a> | ||
</p> | ||
</section> | ||
</main> | ||
); | ||
} |