From 5b7a02ffb9916bb7ec1640c6b76ef18d0641bcd9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 05:58:07 +0000 Subject: [PATCH] Add src/app/auth/oauth-callback/page.tsx --- src/app/auth/oauth-callback/page.tsx | 55 ++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/app/auth/oauth-callback/page.tsx diff --git a/src/app/auth/oauth-callback/page.tsx b/src/app/auth/oauth-callback/page.tsx new file mode 100644 index 0000000..3083763 --- /dev/null +++ b/src/app/auth/oauth-callback/page.tsx @@ -0,0 +1,55 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; + +export default function OAuthCallbackPage() { + return ( + + + + +
+
+

+ Processing your login... +

+

+ Please wait while we securely log you in. +

+
+ {/* A simple spinner or loading animation could go here */} +
+
+
+
+
+
+ ); +}