Initial commit - PezkuwiChain Telegram MiniApp

This commit is contained in:
2026-02-05 10:48:14 +03:00
commit ddd28705c1
105 changed files with 29195 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Loader2 } from 'lucide-react';
interface LoadingScreenProps {
message?: string;
}
export function LoadingScreen({ message = 'Tê barkirin...' }: LoadingScreenProps) {
return (
<div className="flex flex-col items-center justify-center min-h-screen bg-background">
<div className="relative">
<div className="w-16 h-16 rounded-full bg-primary/20 flex items-center justify-center">
<Loader2 className="w-8 h-8 text-primary animate-spin" />
</div>
</div>
<p className="mt-4 text-sm text-muted-foreground">{message}</p>
</div>
);
}