+
+ {/* GitHub Icon */}
+
+
+ {status === 'loading' ? (
+
+ ) : status === 'success' ? (
+
+ ) : (
+
+ )}
+
+
+
+ {/* Status Message */}
+
+ {status === 'loading' && 'Connecting to GitHub...'}
+ {status === 'success' && 'Authentication Successful!'}
+ {status === 'error' && 'Authentication Failed'}
+
+
+
+ {message}
+
+
+ {/* Loading Animation */}
+ {status === 'loading' && (
+
+ )}
+
+ {/* Redirect Message */}
+
+ {status === 'loading' && 'Please wait while we complete the authentication...'}
+ {status === 'success' && 'Redirecting you to the dashboard...'}
+ {status === 'error' && 'Redirecting you back to login...'}
+
+