优化多语言处理

This commit is contained in:
xintaofei
2026-03-07 21:09:55 +08:00
parent 3cc28167e0
commit 8f265f8c0c
6 changed files with 193 additions and 36 deletions

View File

@@ -0,0 +1,14 @@
"use client"
import { Loader2 } from "lucide-react"
export function AppBootLoading() {
return (
<div className="flex min-h-screen items-center justify-center bg-background text-foreground">
<div className="flex items-center gap-3 px-2 py-1">
<Loader2 className="h-4 w-4 animate-spin text-primary" />
<span className="text-sm font-medium tracking-tight">codeg</span>
</div>
</div>
)
}