Skip to content

Commit

Permalink
FIXED #380
Browse files Browse the repository at this point in the history
  • Loading branch information
rishav76dev committed Jan 14, 2025
1 parent 3311128 commit 293bc1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/ui/floating-navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ export const FloatingNav = ({ className }: { className?: string }) => {
</Link>
))}
<button
onClick={() => setIsOpen(false)}
onClick={() => {setIsOpen(false);
window.open('https://docs.fosscu.org/', '_blank');
}}
className="text-left px-4 py-2 text-sm text-white hover:text-neutral-300 hover:bg-white/10 transition-colors rounded"
>
Handbook
Expand Down

0 comments on commit 293bc1d

Please sign in to comment.