import { ReactNode } from 'react'; import Link from 'next/link'; interface CapabilityCardProps { icon: ReactNode; title: string; description: string; href: string; } export function CapabilityCard({ icon, title, description, href }: CapabilityCardProps) { return (
{description}
); } export function CapabilityList({ children }: { children: ReactNode }) { return