import React from "react"; import Image from "next/image"; import Link from "next/link"; import { FiCalendar, FiUser, FiArrowRight } from "react-icons/fi"; type BlogPostCardProps = { slug: string; title: string; excerpt: string; imageUrl: string; author: string; date: string; }; const BlogPostCard: React.FC = ({ slug, title, excerpt, imageUrl, author, date, }) => { console.log("BlogPostCard Props:", { imageUrl }); return (
{/* Image Container */}
{title} {/* Optional: Subtle overlay on hover */}
{/* Content Area */}

{title}

{excerpt}

{/* Meta Info */}
{author} {date}
{/* Read More Link */}
Read More
); }; export default BlogPostCard;