Files
geovektor/components/Loading.tsx
2026-02-10 16:22:14 +05:00

26 lines
921 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
const Loading: React.FC = () => {
return (
<div className="fixed inset-0 bg-brand-dark flex items-center justify-center z-50">
<div className="text-center">
<img
src="/media/geo-logo.webp"
alt="ГеоВектор"
className="w-24 h-24 mx-auto mb-6 animate-pulse"
/>
<div className="flex items-center justify-center gap-2">
<div className="w-3 h-3 bg-brand-orange rounded-full animate-bounce"></div>
<div className="w-3 h-3 bg-brand-orange rounded-full animate-bounce" style={{ animationDelay: '0.1s' }}></div>
<div className="w-3 h-3 bg-brand-orange rounded-full animate-bounce" style={{ animationDelay: '0.2s' }}></div>
</div>
<p className="text-gray-400 mt-4 text-sm">Загрузка...</p>
</div>
</div>
);
};
export default Loading;