import { Metadata } from 'next' import Link from 'next/link' // Force dynamic rendering to avoid useContext issues during static generation export const dynamic = 'force-dynamic' export const metadata: Metadata = { title: 'Server Error / granblue.team', description: 'The server encountered an internal error and was unable to complete your request' } export default function ServerErrorPage() { return (

Internal Server Error

The server encountered an internal error and was unable to complete your request.

Our team has been notified and is working to fix the issue.

Browse teams Report on Discord
) }