Terminal-style specification grid.
npx chaos add spec-gridimport { SpecGrid } from '@/components/chaos/layout/spec-grid';
const specs = [
{ label: 'CPU', value: '8', unit: 'cores', highlighted: true },
{ label: 'RAM', value: '32', unit: 'GB' },
{ label: 'Storage', value: '1', unit: 'TB' },
];
<SpecGrid specs={specs} showHeader />