diff options
author | 2021-07-30 22:39:15 -0700 | |
---|---|---|
committer | 2021-07-30 22:39:15 -0700 | |
commit | 7c744961494ca80f82b3ad66c98ff0a1c0496db7 (patch) | |
tree | 6f0ed586edd85076b2660b3b00c0fbb91f470449 /docs/src/pages/404.astro | |
parent | d0b8485ddfd8dca1376ea0d417ce37282d092cd9 (diff) | |
download | astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.tar.gz astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.tar.zst astro-7c744961494ca80f82b3ad66c98ff0a1c0496db7.zip |
Docs site cleanup (#948)
* add language selector
* docs site cleanup
* review feedback
* code review comments
Diffstat (limited to 'docs/src/pages/404.astro')
-rw-r--r-- | docs/src/pages/404.astro | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/src/pages/404.astro b/docs/src/pages/404.astro index 195a29d4e..242cbf594 100644 --- a/docs/src/pages/404.astro +++ b/docs/src/pages/404.astro @@ -1,8 +1,9 @@ --- -import Layout from '../layouts/Main.astro'; +import SplashLayout from '../layouts/SplashLayout.astro'; --- -<Layout content={{title: "404"}} centered> +<SplashLayout title="Not Found"> + <h1>404</h1> <p>This page isn't in our solar system.</p> <a href="/">Take me home.</a> -</Layout> +</SplashLayout> |