diff --git a/frontend/public/player_cards/harry.png b/frontend/public/player_cards/harry.png new file mode 100644 index 0000000..0fe53a0 Binary files /dev/null and b/frontend/public/player_cards/harry.png differ diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index eaaa0b6..09cc06f 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -543,6 +543,172 @@ export default function App() { ); }; + const PlayerIdentityCard = ({ + name = "Harry Potter", + houseLabel = "Signature of Holder", + borderColor = "#7c4dff", + img = "/player_cards/harry.png", +}) => { + return ( +
+
+ {/* Card itself (like a real identity card) */} +
+ {/* Subtle gloss */} +
+ + {/* Image fill */} +
+ {name} +
+ + {/* Bottom label plate */} +
+
+ {name} +
+ +
+ + {houseLabel} +
+
+ + {/* Tiny corner stamp */} +
+ Identity +
+
+
+
+ ); +}; + + return (