import type { ReactNode } from "react"; type AppLoadingIndicatorProps = Readonly<{ title: string; detail: ReactNode; className?: string; }>; export function AppLoadingIndicator({ title, detail, className = "" }: AppLoadingIndicatorProps) { return (