chore: update dependencies and add new mobile-first features page with interactive demos

This commit is contained in:
2025-10-22 17:10:31 +02:00
parent 205c8fd0d9
commit 886e7557df
12 changed files with 2243 additions and 766 deletions

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

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