Skip to content

Commit

Permalink
add bold styles
Browse files Browse the repository at this point in the history
  • Loading branch information
anamontiaga committed Dec 15, 2023
1 parent 8186c60 commit 355d1e3
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions frontend/pages/for-investors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,11 @@ const ForInvestorsPage: PageComponent<ForInvestorsPageProps, StaticPageLayoutPro
id: 'population',
title: (
<FormattedMessage
defaultMessage="10% of the world's biodiversity is located in Colombia"
id="FryxnD"
defaultMessage="<n>10%</n> of the world's biodiversity is located in Colombia"
id="TlSP7S"
values={{
n: (chunk: string) => <span className="font-semibold">{chunk}</span>,
}}
/>
),
description: (
Expand All @@ -202,7 +205,13 @@ const ForInvestorsPage: PageComponent<ForInvestorsPageProps, StaticPageLayoutPro
{
id: 'carbon',
title: (
<FormattedMessage defaultMessage="Colombia has 1,494 protected areas" id="YFLJ3Y" />
<FormattedMessage
defaultMessage="Colombia has <n>1,494</n> protected areas"
id="bbUwNS"
values={{
n: (chunk: string) => <span className="font-semibold">{chunk}</span>,
}}
/>
),
description: (
<>
Expand Down

0 comments on commit 355d1e3

Please sign in to comment.