--- import MardownContent from '../components/MardownContent.astro'; import { getStrapiMedia, getStrapiBaseUrl } from '../lib/strapi'; interface Props { entry: { data: { name: string; description: string; mainImage: { url: string; alternativeText: string; }; }; }; } const { entry } = Astro.props; const BASE_URL = getStrapiBaseUrl(); ---