Merge caitlin/CRM_ENVR: AI chat ref+health, tips panel, cyberpunk theme, app-shell/bg improvements

This commit is contained in:
JCBSComputer
2026-07-01 09:36:04 +02:00
56 changed files with 2693 additions and 504 deletions
+7
View File
@@ -0,0 +1,7 @@
import { NextResponse } from "next/server"
import { checkAiServiceStatus } from "@/lib/ai"
export async function GET() {
const ok = await checkAiServiceStatus()
return NextResponse.json({ status: ok ? "ok" : "unavailable" }, { status: ok ? 200 : 503 })
}