bugfix
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user