import { BlurImage } from '@/components/blur-image'; import { CalendarIcon, UserIcon } from 'lucide-react'; import Link from 'next/link'; import type React from 'react'; import Balancer from 'react-wrap-balancer'; interface PostCardProps { title: string; description: string; image?: string | null; url: string; date: string; author: string; tags?: string[]; } export const PostCard: React.FC = ({ title, description, image, url, date, author, tags, }) => { return (

{title}

{description}

{/*
{tags?.map((tag) => ( <> {index < tags.length - 1 && } ))}
*/}
{author} {date}
{image && (
)} ); };