import Link from 'next/link'; import { BlogPostDataEntry } from '@nx/nx-dev/data-access-documents/node-only'; import { BlogAuthors } from './authors'; import Image from 'next/image'; export interface BlogEntryProps { post: BlogPostDataEntry; } export function BlogEntry({ post }: BlogEntryProps) { return (
{post.cover_image && (
{post.title}
)}
); }