import Link from "next/link"; import { Tool } from "@/config/tools"; export type ToolCardProps = Pick; export function ToolCard({ Icon, longTitle, description, href }: ToolCardProps) { return ( // @ts-expect-error react 19 beta error

{longTitle}

{description}

); }