Initial commit

This commit is contained in:
2026-08-01 16:07:57 +02:00
commit 20b254e614
68 changed files with 8467 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
export function countryCodeToEmoji(code: string): string {
return [...code.toUpperCase()]
.map((c) => String.fromCodePoint(c.charCodeAt(0) + 127397))
.join("");
}