-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #501 from gravitational/TSwientek/improve-404-erro…
…r-handling Improve 404 error page, logging
- Loading branch information
Showing
2 changed files
with
60 additions
and
7 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,15 +1,63 @@ | ||
// 404.js | ||
|
||
import Link from "next/link"; | ||
import { sendPageNotFoundError } from "utils/posthog"; | ||
import { useEffect } from "react"; | ||
import SiteHeader from "components/Header"; | ||
import Footer from "layouts/DocsPage/Footer"; | ||
|
||
export default function FourOhFour() { | ||
useEffect(() => { | ||
void sendPageNotFoundError(); // Report Error to PostHog for tracking | ||
}, []); | ||
|
||
return ( | ||
<> | ||
<title>404 | Teleport</title> | ||
<h1>404 - Page Not Found</h1> | ||
We're very sorry - we could not find the page you were looking for. | ||
Please navigate to the Teleport <Link href="/">Documentation</Link> or the | ||
<a href="/">Home Page</a> to find what you're looking for. | ||
</> | ||
<div> | ||
<SiteHeader /> | ||
<div style={{ padding: "50px" }}> | ||
<h1>404 Page Not Found</h1> | ||
<p>Sorry, we couldn't find that page!</p> | ||
<p> | ||
Go back to Documentation <Link href="/">home</Link>? | ||
</p> | ||
<h2>Other pages you may find useful</h2> | ||
<ul style={{ marginLeft: 1 }}> | ||
<li> | ||
<a href="https://goteleport.com/">Home Page</a> | ||
</li> | ||
<li> | ||
<Link href="https://goteleport.com/about/">About Us</Link> | ||
</li> | ||
<li> | ||
<Link href="https://goteleport.com/blog/">Blog</Link> | ||
</li> | ||
<li> | ||
<Link href="/support/">Customer Support</Link> | ||
</li> | ||
<li> | ||
<Link href="/">Documentation Home</Link> | ||
</li> | ||
<li> | ||
<Link href="installation">Installation</Link> | ||
</li> | ||
<li> | ||
<Link href="server-access">Teleport Server Access</Link> | ||
</li> | ||
<li> | ||
<Link href="kubernetes-access">Teleport Kubernetes Access</Link> | ||
</li> | ||
<li> | ||
<Link href="database-access">Teleport Database Access</Link> | ||
</li> | ||
<li> | ||
<Link href="desktop-access">Teleport Desktop Access</Link> | ||
</li> | ||
<li> | ||
<Link href="application-access">Teleport Application Access</Link> | ||
</li> | ||
</ul> | ||
</div> | ||
<Footer section={true}></Footer> | ||
</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