()
| 3 | import logo from '../../assets/logo.png'; |
| 4 | |
| 5 | const LoadingScreen: React.FC = () => { |
| 6 | return ( |
| 7 | <div className="fixed inset-0 bg-background flex items-center justify-center z-50"> |
| 8 | <div className="text-center"> |
| 9 | <img src={logo} alt="ScrapeCraft" className="h-16 w-16 mx-auto mb-4 animate-pulse" /> |
| 10 | <h2 className="text-xl font-semibold text-primary mb-2">ScrapeCraft</h2> |
| 11 | <div className="flex items-center justify-center space-x-2"> |
| 12 | <LoadingSpinner size="sm" /> |
| 13 | <span className="text-muted">Initializing your scraping pipeline...</span> |
| 14 | </div> |
| 15 | </div> |
| 16 | </div> |
| 17 | ); |
| 18 | }; |
| 19 | |
| 20 | export default LoadingScreen; |
nothing calls this directly
no outgoing calls
no test coverage detected