From 1ea5eba0cb45b856f15a72626e4fc75e1a58f79a Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:13:59 +0000 Subject: [PATCH] Seed: nonprofit template (15 files) --- src/lib/utils.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/lib/utils.ts diff --git a/src/lib/utils.ts b/src/lib/utils.ts new file mode 100644 index 0000000..270b836 --- /dev/null +++ b/src/lib/utils.ts @@ -0,0 +1,3 @@ +export function cn(...inputs: Array) { + return inputs.filter(Boolean).join(" "); +}