hahma / src /shared /components /cli /CliConceptCard.tsx
automindy's picture
Upload 1980 files
bc4a7e8 verified
Raw
History Blame Contribute Delete
2.02 kB
"use client";
import Link from "next/link";
import { useTranslations } from "next-intl";
import { cn } from "@/shared/utils/cn";
export type CliConceptType = "code" | "agent" | "acp";
export interface CliConceptCardProps {
currentType: CliConceptType;
}
const TYPE_HREFS: Record<CliConceptType, string> = {
code: "/dashboard/cli-code",
agent: "/dashboard/cli-agents",
acp: "/dashboard/acp-agents",
};
export default function CliConceptCard({ currentType }: CliConceptCardProps) {
const t = useTranslations("cliCommon");
const types: CliConceptType[] = ["code", "agent", "acp"];
return (
<div
className={cn(
"bg-surface border rounded-lg shadow-sm p-4",
"border-primary/30 bg-primary/5"
)}
>
<div className="flex flex-col gap-3">
{/* Current type — highlighted */}
<div className="flex flex-col gap-1">
<span className="text-xs font-semibold uppercase tracking-wider text-primary">
{t(`concept.${currentType}.title`)}
</span>
<p className="text-sm text-text-muted">{t(`concept.${currentType}.phrase`)}</p>
<p className="text-[11px] text-text-muted font-mono">{t(`concept.${currentType}.flow`)}</p>
</div>
{/* Other types as chips */}
<div className="flex items-center gap-2 flex-wrap pt-1 border-t border-black/5 dark:border-white/5">
{types
.filter((type) => type !== currentType)
.map((type) => (
<Link
key={type}
href={TYPE_HREFS[type]}
className="inline-flex items-center gap-1 px-2.5 py-1 text-xs font-medium rounded-full bg-black/5 dark:bg-white/5 text-text-muted hover:text-primary hover:bg-primary/10 transition-colors"
>
{t(`concept.${type}.title`)} — {t(`concept.${type}.seeOther`)}
</Link>
))}
</div>
</div>
</div>
);
}