feat: Implement dark mode support by adjusting background and text colors across various pages and components.
This commit is contained in:
@@ -35,17 +35,17 @@ function CallbackHandler() {
|
||||
return (
|
||||
<div className="flex flex-col items-center gap-4">
|
||||
<Loader2 className="w-12 h-12 text-blue-500 animate-spin" />
|
||||
<h2 className="text-xl font-bold text-white text-center">
|
||||
<h2 className="text-xl font-bold text-gray-900 dark:text-white text-center">
|
||||
Completing your sign in...
|
||||
</h2>
|
||||
<p className="text-gray-400">Please wait a moment.</p>
|
||||
<p className="text-gray-500 dark:text-gray-400">Please wait a moment.</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default function AuthCallbackPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-gray-950 flex items-center justify-center p-4">
|
||||
<div className="min-h-screen bg-transparent flex items-center justify-center p-4">
|
||||
<Suspense fallback={
|
||||
<div className="flex flex-col items-center gap-4">
|
||||
<Loader2 className="w-12 h-12 text-blue-500 animate-spin" />
|
||||
|
||||
Reference in New Issue
Block a user