aboutsummaryrefslogtreecommitdiffstats
path: root/apps/landing/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/landing/lib')
-rw-r--r--apps/landing/lib/utils.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/landing/lib/utils.ts b/apps/landing/lib/utils.ts
new file mode 100644
index 00000000..88283f01
--- /dev/null
+++ b/apps/landing/lib/utils.ts
@@ -0,0 +1,7 @@
+import type { ClassValue } from "clsx";
+import { clsx } from "clsx";
+import { twMerge } from "tailwind-merge";
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}