Updated cookies

This commit is contained in:
2025-09-16 14:12:42 +02:00
parent 2867ed1ca7
commit 951d278562
5 changed files with 55 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
import { Settings } from "lucide-react"
import Link from "next/link"
import { SearchBar } from "./search-bar"
import { ThemeSwitcher } from "./theme-switcher"
@@ -10,7 +11,12 @@ export default function Header({ searchBar = false }: { searchBar?: boolean }) {
<span className="text-lg font-semibold">HypStats</span>
</Link>
{searchBar && <SearchBar navbar />}
<ThemeSwitcher />
<div className="flex gap-2 items-center">
<ThemeSwitcher />
<Link href="/settings">
<Settings />
</Link>
</div>
</nav>
</header>
)