diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index c9bb4d8..e0975cf 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -15,6 +15,12 @@ export default function Navbar() {
const navigate = useNavigate();
const location = useLocation();
const { theme, toggleTheme } = useTheme();
+ const nextThemeLabel = theme === 'light' ? 'rose comfort' : theme === 'rose' ? 'dark' : 'light';
+ const themeIcon = theme === 'light'
+ ?
+ : theme === 'rose'
+ ?
+ : ;
useEffect(() => {
const unsubscribe = onAuthStateChanged(auth, (currentUser) => setUser(currentUser));
@@ -111,9 +117,10 @@ export default function Navbar() {
{user ? (
@@ -153,9 +160,10 @@ export default function Navbar() {