+ const baseClasses = `rounded-xl border p-5 text-center ${
+ isAvailable ? 'border-blue-700/20 bg-blue-600/10' : 'border-gray-200 bg-gray-50'
+ }`;
+ const interactiveClasses =
+ isAvailable ?
+ 'cursor-pointer transition-all hover:border-blue-700/40 hover:bg-blue-600/20 hover:shadow-md active:scale-[0.98]'
+ : '';
+
+ const content = (
+ <>
{tool.name}
@@ -42,8 +46,14 @@ export default function SupportedTools() {
>
{isAvailable ? 'Available' : 'Coming Soon'}
-
+ >
);
+
+ return isAvailable ?
+