Skip to content

Commit

Permalink
Update stats values in comparison table (#90466)
Browse files Browse the repository at this point in the history
* Update stats values in comparison table

* Fix typo
  • Loading branch information
CodeyGuyDylan committed May 14, 2024
1 parent 0ea8100 commit 736ba6e
Showing 1 changed file with 27 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,38 @@ export const useComparisonData = () => {
icon: StatsIcon,
info: {
FREE: {
content: translate( 'Basic Stats' ),
content: (
<>
{ translate( 'Basic stats' ) }
<br data-screen="desktop" />
{ /* Space between description and parenthesis on mobile */ }
<span data-screen="mobile"> </span>
{ translate( '(Personal sites only)' ) }
</>
),
},
SECURITY: {
content: translate( 'Basic Stats' ),
content: (
<>
{ translate( 'Basic stats' ) }
<br data-screen="desktop" />
{ /* Space between description and parenthesis on mobile */ }
<span data-screen="mobile"> </span>
{ translate( '(Personal sites only)' ) }
</>
),
},
COMPLETE: {
highlight: true,
content: translate( 'All Stats' ),
content: (
<>
{ translate( 'Advanced stats' ) }
<br data-screen="desktop" />
{ /* Space between description and parenthesis on mobile */ }
<span data-screen="mobile"> </span>
{ translate( '(100k page views)' ) }
</>
),
},
},
},
Expand Down

0 comments on commit 736ba6e

Please sign in to comment.