Minor updates

This commit is contained in:
2025-06-20 21:43:42 +02:00
parent e3326998c4
commit 4e1328147b
17 changed files with 344 additions and 369 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import { Button } from "@heroui/button";
import { useTheme } from "next-themes";
import { VscColorMode } from "react-icons/vsc";
export const ThemeSwitcher = () => {
export function ThemeSwitcher() {
const { theme, setTheme } = useTheme();
const toggle = () => {
@@ -20,4 +20,4 @@ export const ThemeSwitcher = () => {
)}
</Button>
);
};
}