fix card header color

This commit is contained in:
vchikalkin 2025-01-29 20:40:08 +03:00
parent e6640f3b53
commit f3c96e9ea8

View File

@ -5,7 +5,7 @@ type Props = {
export function ProfileCardHeader({ title }: Readonly<Props>) {
return (
<div className="flex flex-row justify-between">
<h1 className="text-lg font-bold text-muted-foreground">{title}</h1>
<h1 className="text-lg font-bold text-primary">{title}</h1>
<div />
</div>
);