File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
export const StatBox = ( { label, value } : { label : string ; value : string } ) => (
2
2
< div className = 'w-[calc(50%-8px)] space-y-9 rounded-lg border border-neutral-700 p-4 transition-all hover:bg-zinc-800/90' >
3
3
< p className = 'text-xs font-medium text-neutral-400' > { label } </ p >
4
- < p className = 'text-xl font-medium' > { value } </ p >
4
+ < p className = 'text-xl font-medium text-neutral-50 ' > { value } </ p >
5
5
</ div >
6
6
)
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export default function Page() {
47
47
< motion . div className = 'flex w-full flex-wrap gap-6 rounded-3xl border border-gray-600 border-opacity-[0.8] bg-zinc-900 p-6 md:flex-nowrap' >
48
48
< div className = 'flex w-full flex-col gap-8' >
49
49
< div className = 'flex flex-col gap-6' >
50
- < h3 className = 'text-xl font-medium' >
50
+ < h3 className = 'text-xl font-medium text-neutral-50 ' >
51
51
{ selectedProduct . name }
52
52
</ h3 >
53
53
< p className = 'text-xs font-medium leading-5 text-neutral-400' >
You can’t perform that action at this time.
0 commit comments