import BLOG from '@/blog.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 (