fix: update 404 page HTML with latest build assets

This commit is contained in:
2025-10-22 12:49:26 +02:00
parent d344652a2f
commit 02da6bb5ed
27 changed files with 128 additions and 38 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))
}