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 ?? ""}

|

{new Date(post.date).toLocaleDateString()}

post-image
); } export default BlogContent;