"use client"; import { useI18n } from "@/components/i18n/i18n-provider"; import { Button, Card, CardContent } from "poyraz-ui/atoms"; export default function SettingsError({ reset, }: { error: Error & { digest?: string }; reset: () => void; }) { const { t } = useI18n(); return (

{t("settings.shell.errorTitle")}

{t("settings.shell.errorDescription")}

); }