import { siteConfig } from '@/lib/config' import Link from 'next/link' import { useRouter } from 'next/router' const BlogPostCard = ({ post, className }) => { const router = useRouter() const currentSelected = router.asPath.split('?')[0] === '/' + post.slug return (
{post.title}
) } export default BlogPostCard