Add animation utilities, update theme settings, and replace welcome component with better structure. Remove old logos

This commit is contained in:
2026-01-12 19:55:21 -04:00
parent e2fbd8e9dd
commit 2e88ede4c2
9 changed files with 242 additions and 4 deletions

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