import React from "react"; import Image from "next/image"; function BlogContent({ post }: { post: any }) { return (

{post.title}

{/* Not sure if name is required */} {post?.author && (

{post.author ?? ""}

)} {post?.author && |}

Last modified {new Date(post.updated).toLocaleDateString()}

post-image
); } export default BlogContent;