import Image from "next/image";
import Link from "next/link";
import { GhostPost, postExcerpt, formatDate, readingTime } from "@/lib/ghost";
/** Shared cover: real Ghost feature image, or a branded fallback when null. */
function Cover({ post, sizes }: { post: GhostPost; sizes: string }) {
if (post.feature_image) {
return (
);
}
return (