Update AppImage

This commit is contained in:
MacRimi
2025-09-28 23:09:31 +02:00
parent a8e7119b4a
commit 795d96f8d5
84 changed files with 2251 additions and 6071 deletions

View File

@@ -0,0 +1,22 @@
"use client"
import { Moon, Sun } from "lucide-react"
import { useTheme } from "next-themes"
import { Button } from "./ui/button"
export function ThemeToggle() {
const { theme, setTheme } = useTheme()
return (
<Button
variant="outline"
size="sm"
onClick={() => setTheme(theme === "light" ? "dark" : "light")}
className="border-border bg-transparent"
>
<Sun className="h-4 w-4 rotate-0 scale-100 transition-all dark:-rotate-90 dark:scale-0" />
<Moon className="absolute h-4 w-4 rotate-90 scale-0 transition-all dark:rotate-0 dark:scale-100" />
<span className="sr-only">Toggle theme</span>
</Button>
)
}