From b7a288ace414b9805b3e87e3834fc86ad37a6b53 Mon Sep 17 00:00:00 2001 From: Magnus Madsen Date: Mon, 3 Aug 2026 06:58:24 +0200 Subject: [PATCH] feat: add 404 page Astro emits dist/404.html, which GitHub Pages, Netlify, and most static hosts serve automatically for unmatched routes. Excluded from the sitemap by @astrojs/sitemap. Co-Authored-By: Claude Fable 5 --- src/pages/404.astro | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/pages/404.astro diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..688882b --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,21 @@ +--- +import Layout from '../layouts/Layout.astro'; +--- + +
+
+
+

Page Not Found

+

Sorry, the page you are looking for does not exist.

+

+ Head back to the front page or explore the + documentation. +

+

+ If you followed a broken link on flix.dev, feel free to report it on + GitHub. +

+
+
+
+