diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index 3ce1bf1..06e264c 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -11,6 +11,7 @@ import { import { GlobeAltIcon } from "@heroicons/react/24/outline"; import Avatar from "./Avatar"; import Button from "./Button"; +import { Card } from "./ui/card"; interface ButtonProps { text: string; @@ -48,7 +49,7 @@ export default function Navbar() { return ( <> -
+ {settingsStore !== undefined && settingsStore.player && ( } href="/settings" /> -
+ ); }