spb/trouve-ka Public
Trouve-KA — moteur de recherche web indépendant, Québec-first. Crawler distribué, index OpenSearch, ranking bilingue, galerie d'images. En prod : www.trouve-ka.com
Python 76.8%
TypeScript 15.7%
SQL 3.9%
Shell 1.4%
CSS 1.3%
Dockerfile 0.7%
1/**2 * Trouve-KA — utilitaires partagés (classes CSS)3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 */67import { clsx, type ClassValue } from "clsx";8import { twMerge } from "tailwind-merge";910/** Fusionne des classes Tailwind conditionnelles sans doublons conflictuels. */11export function cn(...inputs: ClassValue[]): string {12 return twMerge(clsx(inputs));13}14