--- import type { Settings } from "@matthiesenxyz/astro-ghostcms/api"; import { ViewTransitions } from 'astro:transitions'; import { AstroFont } from "astro-font"; export type Props = { title: string; description: string; permalink?: string; image?: string; settings: Settings; }; const { description, permalink, image, settings, title } = Astro.props as Props; --- {title} {description && } {permalink && } {description && } {image && } {permalink && } {description && } {image && }