@@ -5,6 +5,7 @@ import { Login } from '@/components/Login.tsx'
55import { Dialog , DialogContent , DialogHeader , DialogTitle , DialogTrigger } from '@/components/ui/dialog.tsx'
66import { logout } from '@/lib/Auth.ts'
77import type { Models } from 'appwrite'
8+ import { ChevronRight } from 'lucide-react'
89import type { FC } from 'react'
910import { Link } from 'react-router-dom'
1011
@@ -15,33 +16,31 @@ interface Props {
1516
1617export const Header : FC < Props > = ( { user, setUser } ) => (
1718 < >
18- < header className = "flex h-20 w-full justify-between shrink-0 items-center px-4 md:px-6" >
19+ < header className = "flex h-20 w-full justify-between shrink-0 items-center px-4 md:px-6 flex-wrap " >
1920 < NavigationMenu >
2021 < NavigationMenuList >
2122 < NavigationMenuLink asChild >
2223 < Link to = "/" >
23- < Button className = "cursor-pointer" variant = "ghost" >
24- Overview
25- </ Button >
24+ < Button variant = "ghost" > Overview</ Button >
2625 </ Link >
2726 </ NavigationMenuLink >
2827 < NavigationMenuLink asChild >
2928 < Link to = "/collection" >
30- < Button className = "cursor-pointer" variant = "ghost" >
31- Collection
32- </ Button >
29+ < Button variant = "ghost" > Collection</ Button >
3330 </ Link >
3431 </ NavigationMenuLink >
3532 < NavigationMenuLink asChild >
3633 < Link to = "/trade" >
37- < Button className = "cursor-pointer" variant = "ghost" >
38- Trade
39- </ Button >
34+ < Button variant = "ghost" > Trade</ Button >
4035 </ Link >
4136 </ NavigationMenuLink >
4237 </ NavigationMenuList >
4338 </ NavigationMenu >
4439 < div className = "flex items-center gap-2" >
40+ < Button variant = "ghost" onClick = { ( ) => window . open ( 'https://github.com/marcelpanse/tcg-pocket-collection-tracker/discussions' , '_blank' ) } >
41+ Questions < ChevronRight />
42+ </ Button >
43+
4544 { user ? (
4645 < Button
4746 variant = "outline"
@@ -65,8 +64,6 @@ export const Header: FC<Props> = ({ user, setUser }) => (
6564 </ DialogContent >
6665 </ Dialog >
6766 ) }
68-
69- { /* <ModeToggle /> */ }
7067 </ div >
7168 </ header >
7269 </ >
0 commit comments