import Link from 'next/link'; import { Post } from '@/types'; import { format } from 'date-fns'; import { Eye } from 'lucide-react'; import { clsx } from 'clsx'; interface PostListItemProps { post: Post; } export default function PostListItem({ post }: PostListItemProps) { // 📢 공지 카테고리 여부 확인 const isNotice = post.categoryName === '공지' || post.categoryName.toLowerCase() === 'notice'; return (