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 */} +
+
+
+
+
+
+ ); +}