import Scribble from '@/components/Scribble'; import { formatTechnicalValue } from '@/lib/utils/technical'; interface TechnicalGridItem { label: string; value: string; } interface TechnicalGridProps { title?: string; items: TechnicalGridItem[]; } export default function TechnicalGrid({ title, items }: TechnicalGridProps) { return (