Auftragsbuch: Intake-Toggle kuerzer beschriftet (Modus / Box / IDE)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Hitonabi
2026-07-20 15:38:39 +02:00
parent e3b3725b6f
commit 4bb6b28297
24 changed files with 30 additions and 30 deletions
+3 -3
View File
@@ -430,19 +430,19 @@ function IdeenSection() {
</button>
</div>
<div className="flex items-center gap-1.5">
<span className="text-[11px] text-muted-foreground/70">Wer baut das?</span>
<span className="text-[11px] text-muted-foreground/70">Modus</span>
<div className="flex rounded-lg border border-border/60 p-0.5">
<button
onClick={() => setWelt("box")}
className={cn("flex items-center gap-1 rounded px-2 py-1 text-[10px] font-bold uppercase tracking-wide transition-all cursor-pointer",
welt === "box" ? "bg-primary/15 text-primary" : "text-muted-foreground/60 hover:text-foreground")}>
<Hammer className="h-3 w-3" /> Box baut
<Hammer className="h-3 w-3" /> Box
</button>
<button
onClick={() => setWelt("ide")}
className={cn("flex items-center gap-1 rounded px-2 py-1 text-[10px] font-bold uppercase tracking-wide transition-all cursor-pointer",
welt === "ide" ? "bg-violet-500/15 text-violet-300" : "text-muted-foreground/60 hover:text-foreground")}>
<Code2 className="h-3 w-3" /> Ich bau in Zed
<Code2 className="h-3 w-3" /> IDE
</button>
</div>
</div>