diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 7925ec8..b0ab987 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -541,6 +541,261 @@ export default function App() {
);
};
+ // App.jsx (füge diese Komponente irgendwo unter deinen anderen Komponenten ein)
+// ✅ 3 Würfel: 2x d6 + 1x Spezial (Häuser + Hilfkarte + Dunkles Deck)
+
+const DicePanel = () => {
+ return (
+
{
+ e.currentTarget.style.transform = "translateY(-3px) rotate(-1deg)";
+ e.currentTarget.style.boxShadow =
+ "0 26px 70px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(255,255,255,0.08)";
+ }}
+ onMouseLeave={(e) => {
+ e.currentTarget.style.transform = "translateY(0px) rotate(0deg)";
+ e.currentTarget.style.boxShadow =
+ "0 18px 50px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.06)";
+ }}
+ title="Würfel (placeholder)"
+ >
+ {/* subtle inner ring */}
+
+
+ {/* gloss */}
+
+
+ {children}
+
+ );
+};
+
+const DieD6 = ({ value = 1 }) => {
+ // pip layout positions on 3x3 grid
+ const P = ({ x, y }) => (
+