diff --git a/frontend/app/[locale]/(marketing)/auth/error/page.tsx b/frontend/app/[locale]/(marketing)/auth/error/page.tsx new file mode 100644 index 00000000..a6ababa1 --- /dev/null +++ b/frontend/app/[locale]/(marketing)/auth/error/page.tsx @@ -0,0 +1,38 @@ +'use client'; +import React from 'react'; +import { AlertCircle } from 'lucide-react'; +import { Card } from '@/components/ui/card'; +import { useRouter } from 'next/navigation'; +import { Button } from '@/components/ui/button'; + +const AuthErrorPage = () => { + const router = useRouter(); + return ( +
+ +
+
+ +
+

Authentication Error

+

+ We're sorry, but there was an error during the authentication process. Please try again or contact support if the issue persists. +

+
+ + +
+
+
+

Error Code: AUTH_001 | Time: {new Date().toLocaleTimeString()}

+
+
+
+ ); +}; + +export default AuthErrorPage;