'use client'; import RightArrowIcon from '@/components/svgs/RightArrowIcon'; import classNames from 'classnames'; import { useState } from 'react'; interface Tool { name: string; description: string; unreleased?: boolean; } interface IProps { setChosenTool: (toolName: string) => void; chosenTool: string; } const tools: Tool[] = [ { name: 'Second Me Chat API', description: 'Connect your application with external APIs and services.' }, { name: 'Bridge Mode API', description: 'Transform data between different formats and structures.', unreleased: true } ]; const Tools = (props: IProps) => { const { setChosenTool, chosenTool } = props; const toggleTool = (toolName: string) => { setChosenTool(toolName == chosenTool ? '' : toolName); }; return (