From 87eb8c8883f3c45ee7a1d5178587ccc55e08c272 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Thu, 6 Aug 2026 09:14:01 -0500 Subject: [PATCH] bugfix --- src/app/(main)/(marketing)/developers/page.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/(main)/(marketing)/developers/page.tsx b/src/app/(main)/(marketing)/developers/page.tsx index 6238551..914d8d2 100644 --- a/src/app/(main)/(marketing)/developers/page.tsx +++ b/src/app/(main)/(marketing)/developers/page.tsx @@ -9,6 +9,7 @@ import { Github, Package, TerminalSquare, + type LucideIcon, } from 'lucide-react'; export const metadata: Metadata = { @@ -20,7 +21,17 @@ export const metadata: Metadata = { }, }; -const tools = [ +type DeveloperTool = { + title: string; + icon: LucideIcon; + description: string; + command: string; + linkLabel: string; + url: string; + status?: string; +}; + +const tools: DeveloperTool[] = [ { title: 'VS Code / Cursor / Windsurf Extension', icon: Code2,