Skip to content

Commit

Permalink
Create not-found.tsx in Opportunities
Browse files Browse the repository at this point in the history
Add customized 404 for Opportunities
  • Loading branch information
anezkamll authored and zoul committed Jan 9, 2025
1 parent f5f0b7b commit 21cd6b3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions app/opportunities/not-found.tsx
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>
);
}

0 comments on commit 21cd6b3

Please sign in to comment.