19 lines
504 B
Plaintext
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> |