---
import FeatureImage from "../components/FeatureImage.astro";
import type { Settings, Page } from "@matthiesenxyz/astro-ghostcms/api";
import { Markup } from 'astro-remote';
export type Props = {
page: Page;
settings: Settings;
pageClass?: string;
};
const { page, settings, pageClass } = Astro.props as Props;
---
{page.feature_image && (
)}