diff --git a/lib/toolbox-data.ts b/lib/toolbox-data.ts new file mode 100644 index 000000000..db29258c0 --- /dev/null +++ b/lib/toolbox-data.ts @@ -0,0 +1,27 @@ +import { SVGProps } from 'react'; + +export interface Tool { + name: string; + description: string; + url: string; + icon: string; +} + +export interface ToolboxCategory { + title: string; + tools: Tool[]; +} + +export const toolboxCategories: ToolboxCategory[] = [ + { + title: 'Automation & Configuration', + tools: [ + { + name: 'Ansible', + description: 'An open-source IT automation tool that automates provisioning, configuration management, and application deployment.', + url: 'https://www.ansible.com', + icon: 'Terminal', + } + ], + } +]; \ No newline at end of file