Blboun3 fbd130eb8b
Finally structure for the project
Language versions, translations in separate files.
2024-03-25 14:41:07 +01:00

19 lines
504 B
Plaintext

---
import { getLocaleByPath } from "astro:i18n";
import MainLayout from "../../layouts/MainLayout.astro";
import { dictionary } from "../../i18n/dictionary";
const { title } = dictionary[Astro.currentLocale];
export async function getStaticPaths() {
return ["en", "fr", "cs", "de"].map((lang) => {
return { params: { lang } };
});
}
---
<MainLayout title={title} description="sitedescription" lang={Astro.currentLocale}>
<h1>Welcome</h1>
<p>
{Astro.url.toString()}
</p>
</MainLayout>