bake canonical build harness (deterministic /ship for forks) [product-management]

This commit is contained in:
vibeasite-bot
2026-08-22 06:26:51 +01:00
parent b917c7d1ad
commit 82789e66e3
77 changed files with 6528 additions and 350 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>
);
}