--- import "../styles/global.css"; import Head from "./Head.astro"; import Navigation from "../components/Navigation.astro"; import { getLanguageFromPath } from "../lib/i18n"; import ReloadPrompt from '../components/ReloadPrompt.astro'; const { title = "Just a title", description = "Adescription" } = Astro.props; // Get current language from URL const currentLang = getLanguageFromPath(Astro.url.pathname); ---