()
| 87 | } |
| 88 | |
| 89 | function LoadingErrorPage() { |
| 90 | return ( |
| 91 | <div className="min-h-screen flex flex-col items-center justify-center p-4 bg-backgroundSecondary"> |
| 92 | <div className="w-full max-w-md"> |
| 93 | <div className="flex justify-center mb-6"> |
| 94 | <SourcebotLogo className="h-16" size="large" /> |
| 95 | </div> |
| 96 | <Card className="w-full"> |
| 97 | <CardHeader className="space-y-1"> |
| 98 | <CardTitle className="text-2xl font-semibold text-center">Loading...</CardTitle> |
| 99 | </CardHeader> |
| 100 | </Card> |
| 101 | </div> |
| 102 | </div> |
| 103 | ) |
| 104 | } |
| 105 | |
| 106 | export default function AuthErrorPage() { |
| 107 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected