This commit is contained in:
2026-08-06 09:14:01 -05:00
parent aac7283e59
commit 87eb8c8883

View File

@@ -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,