import BLOG from '@/blog.config' import Link from 'next/link' import React from 'react' const BlogPostCard = ({ post, showSummary }) => { return (
{post.category} - {post.title}
) } export default BlogPostCard