From a366a95af5de31a5e6f71db6aa6e168d31c865db Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:11:57 +0000 Subject: [PATCH] Seed: real-estate template (18 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(" "); +}