From acdf713378cedeb8822c344e659eec3dd8f6873f Mon Sep 17 00:00:00 2001 From: Louis Knight-Webb Date: Mon, 14 Jul 2025 16:46:18 +0100 Subject: [PATCH] Add a link to GitHub issues (vibe-kanban) (#172) * Perfect! I've successfully added a GitHub issues link next to the existing docs link in the navigation bar. The changes include: 1. **Added `MessageCircleQuestion` icon import** from lucide-react 2. **Added a "Support" button** that links to `https://github.com/BloopAI/vibe-kanban/issues` 3. **Added proper spacing** between the buttons with `space-x-1` The support link will now appear in the top navigation bar next to the "Docs" button, making it easily accessible for users who need help or want to report issues. * prettier --- frontend/src/components/layout/navbar.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/layout/navbar.tsx b/frontend/src/components/layout/navbar.tsx index ca55cb26..3aa3e4b4 100644 --- a/frontend/src/components/layout/navbar.tsx +++ b/frontend/src/components/layout/navbar.tsx @@ -1,6 +1,12 @@ import { Link, useLocation } from 'react-router-dom'; import { Button } from '@/components/ui/button'; -import { FolderOpen, Settings, BookOpen, Server } from 'lucide-react'; +import { + FolderOpen, + Settings, + BookOpen, + Server, + MessageCircleQuestion, +} from 'lucide-react'; import { Logo } from '@/components/logo'; export function Navbar() { @@ -51,7 +57,7 @@ export function Navbar() { -
+
+