feat: add GitHub link to sidebar for bug reports and contributions

This commit is contained in:
Ashwin Bhat
2024-12-19 12:12:11 -08:00
parent ef32a8f289
commit 53226dd391

View File

@@ -1,5 +1,5 @@
import { useState } from "react";
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug } from "lucide-react";
import { Play, ChevronDown, ChevronRight, CircleHelp, Bug, Github } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import {
@@ -248,6 +248,11 @@ const Sidebar = ({
<Bug className="w-4 h-4 text-gray-800" />
</Button>
</a>
<a href="https://github.com/modelcontextprotocol/inspector" target="_blank" rel="noopener noreferrer">
<Button variant="ghost" title="Report bugs or contribute on GitHub">
<Github className="w-4 h-4 text-gray-800" />
</Button>
</a>
</div>
</div>
</div>