-
+
+ {/* Theme & Settings Icons */}
+
+
+ );
+ }
+
+ return (
+
);
}
diff --git a/src/components/layout/ThemeToggle.tsx b/src/components/layout/ThemeToggle.tsx
new file mode 100644
index 0000000..34ea3ba
--- /dev/null
+++ b/src/components/layout/ThemeToggle.tsx
@@ -0,0 +1,23 @@
+import { useTheme } from "next-themes";
+import { Moon, Sun } from "lucide-react";
+import { Button } from "@/components/ui/button";
+
+export function ThemeToggle() {
+ const { theme, setTheme } = useTheme();
+
+ return (
+
+ );
+}