'use client' export default function ServerError() { // Log 500 error details to console if (typeof window !== 'undefined') { console.error('🚨 500 Server Error Page Rendered:', { timestamp: new Date().toISOString(), userAgent: navigator.userAgent, url: window.location.href, referrer: document.referrer }) } return (

500

Internal Server Error.

We are already working to solve the problem.

Check the browser console for detailed error information.

) }