Skip to content

Commit 4802115

Browse files
committed
fix font color
1 parent 3edb8fd commit 4802115

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const StatBox = ({ label, value }: { label: string; value: string }) => (
22
<div className='w-[calc(50%-8px)] space-y-9 rounded-lg border border-neutral-700 p-4 transition-all hover:bg-zinc-800/90'>
33
<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>
55
</div>
66
)

src/app/earn/product/[address]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function Page() {
4747
<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'>
4848
<div className='flex w-full flex-col gap-8'>
4949
<div className='flex flex-col gap-6'>
50-
<h3 className='text-xl font-medium'>
50+
<h3 className='text-xl font-medium text-neutral-50'>
5151
{selectedProduct.name}
5252
</h3>
5353
<p className='text-xs font-medium leading-5 text-neutral-400'>

0 commit comments

Comments
 (0)