15 lines
426 B
TypeScript
15 lines
426 B
TypeScript
"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>
|
|
)
|
|
}
|