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