---
import BaseLayout from "./BaseLayout.astro";
import Giscus from "@/components/Giscus.astro";
import { getLangFromUrl, getTranslations } from "@/i18n";
import "@/styles/global.css";
const { frontmatter } = Astro.props;
const lang = getLangFromUrl(Astro.url);
const t = getTranslations(lang);
---