// import { ComponentProps } from "react"; // import { formatDistanceToNow } from "date-fns"; // import { cn } from "@/lib/utils"; // import { Badge } from "@/components/ui/badge"; // interface Props { // item: ProjectType; // } // export const Project = ({ item }: Props) => { // return ( // // ); // }; // const getBadgeVariantFromLabel = ( // label: string, // ): ComponentProps["variant"] => { // if (["work"].includes(label.toLowerCase())) { // return "default"; // } // if (["personal"].includes(label.toLowerCase())) { // return "outline"; // } // return "secondary"; // };