MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / LoadingScreen

Function LoadingScreen

frontend/src/components/Common/LoadingScreen.tsx:5–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3import logo from '../../assets/logo.png';
4
5const 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
20export default LoadingScreen;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected