23 lines
816 B
TypeScript
23 lines
816 B
TypeScript
"use client";
|
|
|
|
/**
|
|
* Экран загрузки воронки
|
|
* Показывается пока загружаются AB тесты и воронка инициализируется
|
|
*/
|
|
export function FunnelLoadingScreen() {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-background">
|
|
<div className="flex flex-col items-center gap-4">
|
|
{/* Spinner */}
|
|
<div className="relative w-12 h-12">
|
|
<div className="absolute inset-0 rounded-full border-4 border-primary/20"></div>
|
|
<div className="absolute inset-0 rounded-full border-4 border-primary border-t-transparent animate-spin"></div>
|
|
</div>
|
|
|
|
{/* Текст */}
|
|
<p className="text-sm text-muted-foreground">Loading...</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|