+
{code}
diff --git a/client/src/components/base/buttons/IconButton.tsx b/client/src/components/base/buttons/IconButton.tsx
index d6c08d7..df839d2 100644
--- a/client/src/components/base/buttons/IconButton.tsx
+++ b/client/src/components/base/buttons/IconButton.tsx
@@ -20,7 +20,7 @@ const iconStyle = cn`
text-zinc-500
cursor-pointer
- hover:bg-zinc-800
+ hover:bg-slate-800
hover:text-white
- active:bg-zinc-900
+ active:bg-slate-900
`;
diff --git a/client/src/components/base/loading/Skeleton.tsx b/client/src/components/base/loading/Skeleton.tsx
index c5dba85..700fdd3 100644
--- a/client/src/components/base/loading/Skeleton.tsx
+++ b/client/src/components/base/loading/Skeleton.tsx
@@ -2,5 +2,5 @@ import {cn} from "@/lib/utils";
/** Provides a simple rectangular skeleton for use when a component is loading. */
export function Skeleton({className}: { className?: string }) {
- return ;
+ return ;
}
diff --git a/client/src/components/base/nav/Navbar.tsx b/client/src/components/base/nav/Navbar.tsx
index 9a69c40..b6058ea 100644
--- a/client/src/components/base/nav/Navbar.tsx
+++ b/client/src/components/base/nav/Navbar.tsx
@@ -12,7 +12,7 @@ import {cn} from "@/lib/utils";
export function Navbar({className}: {className?: string}) {
return (
-