security/feat: no need for api on lastplayed, greatly improve logging+interface+ status of music widget

This commit is contained in:
Aidan 2025-03-28 15:00:11 -04:00
parent 2710b278a3
commit 01ca6545fd
7 changed files with 268 additions and 43 deletions

6
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))
}