({ product, description, href })
| 27 | } |
| 28 | |
| 29 | const TableRow: React.FC<TableRowProps> = ({ product, description, href }) => ( |
| 30 | <tr> |
| 31 | <td className="w-[180px] p-2 align-top"> |
| 32 | <Link href={href}>{product.main}</Link> |
| 33 | {product.sub && ( |
| 34 | <div className="xtext-muted-foreground/50 mt-1 text-sm text-[#7f7db0]/50"> |
| 35 | ({product.sub}) |
| 36 | </div> |
| 37 | )} |
| 38 | </td> |
| 39 | <td className="p-2">{description}</td> |
| 40 | </tr> |
| 41 | ); |
| 42 | |
| 43 | const AIPipesDescription: React.FC = () => ( |
| 44 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected