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

{longTitle}

{description}

); }