--- import PostMetadata from "./PostMetadata.astro"; interface Props { class: string; entry: any; title: string; url: string; published: Date; tags: string[]; category: string; image: string; description: string; words: number; } const { entry, title, url, published, tags, category, image, description, words } = Astro.props; const className = Astro.props.class; // console.log(Astro.props); import ImageBox from "./misc/ImageBox.astro"; import ButtonTag from "./control/ButtonTag.astro"; import { Icon } from 'astro-icon/components'; import Button from "./control/Button.astro"; import {i18n} from "../i18n/translation"; import I18nKey from "../i18n/i18nKey"; const hasCover = image !== undefined && image !== null && image !== ''; const coverWidth = "28%"; const { remarkPluginFrontmatter } = await entry.render(); ---