Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
404 page updates
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcallister committed May 17, 2024
1 parent 3866bcd commit 12404b8
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions pages/404.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@ import Link from "next/link";

export default function FourOhFour() {
return (
<>
<h1>404 - Page Not Found</h1>
We&apos;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&apos;re looking for.
</>
<div style={{ textAlign: 'center', padding: '50px' }}>
<h1>404 Page Not Found</h1>
<p>Sorry, we couldn't find that page</p>
<p>We're very sorry - we couldn't find the page you were looking for.</p>
<h2>Pages you may find useful</h2>
<ul style={{ listStyleType: 'none', padding: 0 }}>
<li><a href="/">Home Page</a></li>
<li><Link to="/about">About Us</Link></li>
<li><Link to="/blog">Blog</Link></li>
<li><Link to="/support">Customer Support</Link></li>
<li><Link href="Documentation">Installation</Link></i>

Check failure on line 17 in pages/404.tsx

View workflow job for this annotation

GitHub Actions / Lint code base

Expected corresponding JSX closing tag for 'li'.
<li><Link to="installation.mdx">Installation</Link></li>
<li><Link to="server-access">Teleport Server Access</Link></li>
<li><Link to="kubernetes-access">Teleport Kubernetes Access</Link></li>
<li><Link to="database-access">Teleport Database Access</Link></li>
<li><Link to="desktop-access">Teleport Desktop Access</Link></li>
<li><Link to="application-access">Teleport Application Access</Link></li>
</ul>
</div>
);
}
}

0 comments on commit 12404b8

Please sign in to comment.