Skip to content

Commit 4188781

Browse files
committed
Fix text colors
1 parent 7a5baa1 commit 4188781

File tree

1 file changed

+4
-2
lines changed
  • src/app/conf/2025/components/cta-card-section

1 file changed

+4
-2
lines changed

src/app/conf/2025/components/cta-card-section/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ export function CtaCardSection({
2323
>
2424
<div className="relative z-10 flex flex-col gap-10 sm:items-start">
2525
<div className="flex flex-col gap-6">
26-
<h2 className="text-neu-0 typography-d1">{heading}</h2>
27-
<p className="max-w-[555px] text-pretty text-neu-50 typography-body-lg">
26+
<h2 className="text-neu-0 typography-d1 dark:text-neu-900">
27+
{heading}
28+
</h2>
29+
<p className="max-w-[555px] text-pretty text-neu-50 typography-body-lg dark:text-neu-800">
2830
{description}
2931
</p>
3032
</div>

0 commit comments

Comments
 (0)