@@ -7,9 +7,9 @@ import { Button, ButtonProps } from "@/components/Button";
7
7
import { Link } from "@/components/Link" ;
8
8
import { Tooltip } from "@/components/Tooltip" ;
9
9
10
- import { dollarFormatter } from "./DollarFormatter " ;
10
+ import { dollarFormatter , percentFormatter } from "./formatters " ;
11
11
12
- const PricingCardBody = twc . div `p-8 text-left text-low` ;
12
+ const PricingCardBody = twc . div `p-6 text-left text-low` ;
13
13
const Title = twc . div `mb-2 text-xl font-semibold text` ;
14
14
const Description = twc . div `my-2 h-12 last-of-type:mb-0` ;
15
15
const Badges = twc . div `block h-8` ;
@@ -54,7 +54,7 @@ const PricingCard = ({
54
54
< div
55
55
className = { clsx (
56
56
"border-border w-full flex-1 shrink-0 basis-80 rounded-xl border bg-violet-1" ,
57
- emphasis ? "border-2 border-violet-6 pt-4 " : "md:mt-4" ,
57
+ emphasis ? "border-2 border-violet-6 pt-[calc(1rem-1px)] " : "md:mt-4" ,
58
58
) }
59
59
>
60
60
{ children }
@@ -189,11 +189,11 @@ export const PricingCards = ({
189
189
190
190
< Features >
191
191
< FeaturesCaption > Everything in Pro, plus:</ FeaturesCaption >
192
- < Feature > Custom amount of screenshots</ Feature >
193
- < Feature > Dedicated Support</ Feature >
194
- < Feature > GitHub SSO</ Feature >
195
192
< Feature > SAML authentication</ Feature >
196
- < Feature > SLA for 99.99% Uptime</ Feature >
193
+ < Feature > Advanced access control</ Feature >
194
+ < Feature > { percentFormatter . format ( 0.9999 ) } Uptime SLA</ Feature >
195
+ < Feature > Onboarding and migration support</ Feature >
196
+ < Feature > Support SLA</ Feature >
197
197
</ Features >
198
198
</ PricingCardBody >
199
199
</ PricingCard >
0 commit comments