10 lines
186 B
Text
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>
|