This commit is contained in:
parent
06a908b79b
commit
24cf9bfb14
@ -11,6 +11,7 @@ import {
|
|||||||
import { GlobeAltIcon } from "@heroicons/react/24/outline";
|
import { GlobeAltIcon } from "@heroicons/react/24/outline";
|
||||||
import Avatar from "./Avatar";
|
import Avatar from "./Avatar";
|
||||||
import Button from "./Button";
|
import Button from "./Button";
|
||||||
|
import { Card } from "./ui/card";
|
||||||
|
|
||||||
interface ButtonProps {
|
interface ButtonProps {
|
||||||
text: string;
|
text: string;
|
||||||
@ -48,7 +49,7 @@ export default function Navbar() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="bg-background flex h-fit w-full rounded-md">
|
<Card className="flex h-fit w-full rounded-md">
|
||||||
{settingsStore !== undefined && settingsStore.player && (
|
{settingsStore !== undefined && settingsStore.player && (
|
||||||
<NavbarButton
|
<NavbarButton
|
||||||
ariaLabel="Your profile"
|
ariaLabel="Your profile"
|
||||||
@ -127,7 +128,7 @@ export default function Navbar() {
|
|||||||
icon={<CogIcon height={20} width={20} />}
|
icon={<CogIcon height={20} width={20} />}
|
||||||
href="/settings"
|
href="/settings"
|
||||||
/>
|
/>
|
||||||
</div>
|
</Card>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user