diff --git a/astro-site/src/components/Footer.astro b/astro-site/src/components/Footer.astro index 714873d..b83758f 100644 --- a/astro-site/src/components/Footer.astro +++ b/astro-site/src/components/Footer.astro @@ -3,5 +3,5 @@ import site from "../data/site.json"; --- diff --git a/astro-site/src/pages/404.astro b/astro-site/src/pages/404.astro new file mode 100644 index 0000000..5483ea9 --- /dev/null +++ b/astro-site/src/pages/404.astro @@ -0,0 +1,35 @@ +--- +import "../styles/global.css"; +import Header from "../components/Header.astro"; +import Footer from "../components/Footer.astro"; +import site from "../data/site.json"; + +const base = import.meta.env.BASE_URL; +--- + + + + + + + Page Not Found — {site.title} + + + + +
+
+

404 — Page Not Found

+

+ The page you're looking for doesn't exist or has been moved. +

+ Back to the tutorial +
+