import formatDate from '@/utils/format-date'; import { Button } from '@/components/ui/button'; type Props = { id: string; date: Date | string; title: string; type: 'blog' | 'portfolio' | 'videos'; lang: string; }; export default function PostItem(props: Props) { return ( ); }