added a feature for sending mail from within the application

This commit is contained in:
2025-12-12 22:39:59 -05:00
parent 4e74a38287
commit e200667611
10 changed files with 480 additions and 144 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
// lib/cn.ts
import clsx, { type ClassValue } from "clsx";
export function cn(...inputs: ClassValue[]) {
return clsx(inputs);
}