Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/pages/404.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="Flix | Page Not Found">
<div class="container">
<div class="row mb-3">
<div class="col">
<h1>Page Not Found</h1>
<p>Sorry, the page you are looking for does not exist.</p>
<p>
Head back to the <a href="/">front page</a> or explore the
<a href="/documentation/">documentation</a>.
</p>
<p>
If you followed a broken link on flix.dev, feel free to report it on
<a href="https://github.com/flix/flix.dev/issues">GitHub</a>.
</p>
</div>
</div>
</div>
</Layout>
Loading