feat: add detailed character page

This commit is contained in:
Kentai Radiquum 2025-07-27 02:32:03 +05:00
parent 2e734f3cb8
commit 8440465230
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
15 changed files with 224 additions and 24 deletions

View file

@ -0,0 +1,10 @@
export const CharacterColor = ({ color }: { color: string }) => {
return (
<div
className="bg-[var(--bg-color)] px-8 py-4 text-2xl rounded-xl border-1 border-white/5"
style={{ "--bg-color": color } as React.CSSProperties}
>
<p className="text-transparent">{color}</p>
</div>
);
};