update theme

This commit is contained in:
Aman Varshney
2025-04-21 03:31:35 +05:30
parent b0e19a54c5
commit 0253195969
24 changed files with 928 additions and 929 deletions

View File

@@ -12,7 +12,7 @@ export const TECH_OPTIONS = {
id: "orpc",
name: "oRPC",
description: "Opinionated RPC framework",
icon: "🧩",
icon: "/icon/orpc.svg",
color: "from-indigo-400 to-indigo-600",
},
],

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));
}