export default function Meta(post, disableImage, large = false) { const author = post?.extra?.author || "Urbit"; const title = post?.title ? `${post.title} - ` : ""; const description = post?.description || "Urbit provides foundational primitives at the operating system layer, serving as a better platform for building networked, decentralized applications."; const image = post?.extra?.image || "https://storage.googleapis.com/media.urbit.org/site/opengraph/sig-white.png"; return ( <> {!disableImage && ( )} ); }