--- import MainLayout from "../../../layouts/MainLayout.astro"; import { getBlogPosts } from "../../../content/config"; //@ts-ignore import { dictionary } from "../../../i18n/dictionary"; import SinglePage from "../../../layouts/SinglePage.astro"; const { title, description } = dictionary[Astro.currentLocale]; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "../../../components/ui/card"; export async function getStaticPaths() { return ["en", "fr", "cs", "de"].map((lang) => { return { params: { lang } }; }); } var posts = await getBlogPosts(); var filtered_posts = posts.filter( (post) => post.data.language == Astro.currentLocale, ); ---