import Link from 'next/link' import { AlertCircle, ArrowLeft } from 'lucide-react' import { Button } from '@/components/ui/button' export default function AuthErrorPage() { return (
{/* Background elements */}
{/* Back to home */} Back to home {/* Card */}
{/* Icon */}
{/* Content */}

Authentication Error

Something went wrong during authentication. This could be due to an expired link or a configuration issue.

{/* Actions */}

If the problem persists, please{' '} contact us

) }