feat: Implement dark mode support by adjusting background and text colors across various pages and components.

This commit is contained in:
2026-02-26 16:57:28 -03:00
parent 947abcb0bc
commit e5373919c9
56 changed files with 536 additions and 517 deletions
+3 -3
View File
@@ -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" />