import Image from "next/image"; import React from "react"; interface RecentCardProps { image: string; title: string; tag: string; description: string; } const Recent_Card: React.FC = ({ image, title, tag, description }) => { return (
image

{title}

{tag} {description}

); }; export default Recent_Card;