"use client"; import { KeyRound } from "lucide-react"; import { useTranslation } from "react-i18next"; import { Badge } from "@/components/ui/badge"; import { Button } from "@/components/ui/button"; import { CopyField, SettingsCard, SettingsSection, } from "@/components/settings/settings-parts"; import { API_BASE_URL } from "@/lib/api-client"; export function DevelopersPanel() { const { t } = useTranslation(); return ( <>

{t("settings.developers.authLabel")}

{t("settings.developers.authDescription")}

{t("settings.developers.comingSoon")} } description={t("settings.developers.tokensDescription")} title={t("settings.developers.tokensTitle")} >

{t("settings.developers.noTokens")}

{t("settings.developers.resourcesBody")}

); }