diff --git a/app/auth-error/page.tsx b/app/auth-error/page.tsx index 16ce96d..8c29531 100644 --- a/app/auth-error/page.tsx +++ b/app/auth-error/page.tsx @@ -1,5 +1,6 @@ import Link from "next/link"; import { ArrowLeft, Lock } from "lucide-react"; +import { Logo } from "@/client/components/ui/logo"; export const metadata = { title: "Authentication Error — Statify", @@ -44,7 +45,7 @@ export default async function AuthErrorPage({ const isClosedBeta = reason === "not_whitelisted"; return ( -
+
{/* Background glow */}
-
+
+
{isClosedBeta ? ( <>
@@ -120,7 +122,12 @@ export default async function AuthErrorPage({

)} -
-
+
+
+ + + ); }