feat: create dashboard starter with basic layout and metrics

Add initial dashboard page and metric cards for Acme branding.

#VERCEL_SKIP

Co-authored-by: null <162737925+zebulonhermann@users.noreply.github.com>
This commit is contained in:
v0
2025-11-21 05:08:15 +00:00
parent f14425bbdf
commit 1833901a29
75 changed files with 7585 additions and 68 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))
}