add shadcn navigation-menu

This commit is contained in:
Bitdori (Admin) 2026-08-30 00:32:47 +09:00
parent b6fe93998a
commit e9b4c98bd7
13 changed files with 2403 additions and 94 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))
}