import React from 'react'; import Link from 'next/link'; import { BlogType } from '@/types'; interface BlogCardProps { blog: BlogType; } const BlogCard: React.FC = ({ blog }) => { return (
{blog.title}

{blog.title}

{blog.description}

); }; export default BlogCard;