'use client'; import Link from 'next/link'; import { ArrowLeft, MessageCircleQuestion } from 'lucide-react'; import { Button } from '@kit/ui/button'; import { Trans } from '@kit/ui/trans'; export function ErrorPageContent({ statusCode, heading, subtitle, reset, backLink = '/', backLabel = 'common.backToHomePage', contactLabel = 'common.contactUs', }: { statusCode: string; heading: string; subtitle: string; reset?: () => void; backLink?: string; backLabel?: string; contactLabel?: string; }) { return (