personal-page/_src/pages/es/404.astro

10 lines
189 B
Text

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