add spotlight

This commit is contained in:
2025-08-03 16:40:51 +02:00
parent 663fd167b7
commit 0eee1629c6
14 changed files with 2800 additions and 410 deletions

6
src/lib/utils.ts Normal file
View File

@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}