feat(website): initialize Next.js 15 project with @opennextjs/cloudflare

This commit is contained in:
justsisyphus
2026-01-24 05:07:42 +09:00
parent 691fffb2aa
commit e68600a76b
26 changed files with 2072 additions and 0 deletions
+6
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))
}