bake canonical build harness (deterministic /ship for forks) [dashboard]

This commit is contained in:
vibeasite-bot
2026-08-22 05:56:06 +01:00
parent 9d37692dc6
commit bbf19c07f9
77 changed files with 6513 additions and 363 deletions
+19
View File
@@ -0,0 +1,19 @@
import { useTheme } from "next-themes";
import { Button } from "@/components/ui/button";
import { Sun, Moon } from "lucide-react";
export function ThemeToggle() {
const { theme, setTheme } = useTheme();
return (
<Button
variant="ghost"
size="icon"
className="h-9 w-9"
onClick={() => setTheme(theme === "dark" ? "light" : "dark")}
aria-label="Toggle theme"
>
<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" />
</Button>
);
}