Commit completed Torbat Pages admin frontend module, BFF proxy, routes, and validation artifacts for official platform deploy. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
440 B
TypeScript
16 lines
440 B
TypeScript
"use client";
|
|
|
|
import { StatCard } from "@/components/ds";
|
|
|
|
export type ExperienceStat = { label: string; value: string; hint?: string };
|
|
|
|
export function ExperienceStatGrid({ stats }: { stats: ExperienceStat[] }) {
|
|
return (
|
|
<div className="grid gap-4 sm:grid-cols-2 xl:grid-cols-4">
|
|
{stats.map((s) => (
|
|
<StatCard key={s.label} label={s.label} value={s.value} hint={s.hint} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|