import { type ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } export const formatDate = (date: Date): string => { return date.toLocaleDateString("en-US", { year: "numeric", month: "long", day: "numeric", }); };