feat(langs): Add internacionalization functionality

This commit is contained in:
Alexander Navarro 2024-03-16 18:37:12 -03:00
parent eef9ec9457
commit 45fcc13497
27 changed files with 1330 additions and 390 deletions

10
src/pages/es/blog.astro Normal file
View file

@ -0,0 +1,10 @@
---
import { changeLanguage } from "i18next";
import Layout from "../../layouts/Layout.astro";
changeLanguage("es");
---
<Layout title="Blog">
<h1>Blog</h1>
</Layout>