mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-05-03 08:20:40 +02:00
14 lines
362 B
TypeScript
14 lines
362 B
TypeScript
import { Bold } from "@tremor/react";
|
|
import Image from "next/image";
|
|
|
|
export function DanswerInitializingLoader() {
|
|
return (
|
|
<div className="mx-auto animate-pulse">
|
|
<div className="h-24 w-24 mx-auto mb-3">
|
|
<Image src="/logo.png" alt="Logo" width="1419" height="1520" />
|
|
</div>
|
|
<Bold>Initializing Danswer</Bold>
|
|
</div>
|
|
);
|
|
}
|