10 lines
171 B
Text
10 lines
171 B
Text
---
|
|
import { changeLanguage } from "i18next";
|
|
import Layout from "../../layouts/Layout.astro";
|
|
|
|
changeLanguage("es");
|
|
---
|
|
|
|
<Layout title="Blog">
|
|
<h1>Blog</h1>
|
|
</Layout>
|