add viewProfile example

This commit is contained in:
Tony D'Addeo
2025-01-06 16:54:40 -06:00
committed by lucas-neynar
parent 7cde86a049
commit 805036bdaf
9 changed files with 266 additions and 38 deletions

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