import React from 'react' import { RiVerifiedBadgeLine } from '@remixicon/react' import type { Plugin } from '../types' import Badge from '../../base/badge' import CornerMark from './base/corner-mark' import Title from './base/title' import OrgInfo from './base/org-info' import Description from './base/description' import cn from '@/utils/classnames' // import { getLocaleOnServer } from '@/i18n/server' import type { Locale } from '@/i18n' type Props = { className?: string payload: Plugin showVersion?: boolean installed?: boolean descriptionLineRows?: number footer?: React.ReactNode clientLocale?: Locale serverLocale?: Locale } const Card = ({ className, payload, showVersion, installed, descriptionLineRows = 2, footer, clientLocale, serverLocale, }: Props) => { const locale = clientLocale || serverLocale || 'en' const { type, name, org, label } = payload return (