personal-website/src/pages/index.astro

13 lines
293 B
Plaintext
Raw Normal View History

2024-03-19 12:59:26 +01:00
---
import { getLocaleByPath } from "astro:i18n";
import MainLayout from "../layouts/MainLayout.astro";
2024-03-19 12:59:26 +01:00
---
<MainLayout title="sitetitle" description="sitedescription" lang="en">
<h1>Welcome</h1>
<p>
"homeP1"
{Astro.url.toString()}
{getLocaleByPath("en")}
</p>
</MainLayout>