personal-page/_src/pages/404.astro

10 lines
186 B
Text

---
import { changeLanguage } from "i18next";
import Layout from "../layouts/Layout.astro";
changeLanguage("en");
---
<Layout title="Welcome to Astro.">
<h1>not found</h1>
</Layout>