bugfix
This commit is contained in:
@@ -9,6 +9,7 @@ import {
|
|||||||
Github,
|
Github,
|
||||||
Package,
|
Package,
|
||||||
TerminalSquare,
|
TerminalSquare,
|
||||||
|
type LucideIcon,
|
||||||
} from 'lucide-react';
|
} from 'lucide-react';
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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',
|
title: 'VS Code / Cursor / Windsurf Extension',
|
||||||
icon: Code2,
|
icon: Code2,
|
||||||
|
|||||||
Reference in New Issue
Block a user