diff options
Diffstat (limited to 'src/pages/404.astro')
-rw-r--r-- | src/pages/404.astro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pages/404.astro b/src/pages/404.astro index 7c2b420..8bbd18a 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -3,9 +3,10 @@ import Layout from "../layouts/BaseLayout.astro"; const title = "404 — Page Not Found | Valentin Popov"; const description = "The page you're looking for doesn't exist!"; +const lang = "en"; --- -<Layout title={title} description={description}> +<Layout title={title} description={description} lang={lang}> <div style="text-align:center;"> <h1>404</h1> <p><strong>Page not found</strong></p> |