Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 24 additions & 6 deletions frontend/web/components/modals/Payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,18 +240,17 @@ const Payment = class extends Component {
<span>
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>
Email technical support
</div>
<div className='ml-2'>Scheduled flags</div>
</Row>
</li>

<li>
<Row className='mb-3 pricing-features-item'>
<span>
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>Scheduled flags</div>
<div className='ml-2'>
Two-factor authentication (2FA)
</div>
</Row>
</li>
<li>
Expand All @@ -260,7 +259,7 @@ const Payment = class extends Component {
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>
Two-factor authentication (2FA)
Email technical support
</div>
</Row>
</li>
Expand Down Expand Up @@ -354,6 +353,14 @@ const Payment = class extends Component {
</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<span>
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>SAML</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<span>
Expand All @@ -380,6 +387,17 @@ const Payment = class extends Component {
<div className='ml-2'>Audit logs</div>
</Row>
</li>
<li>
<Row className='mb-3 pricing-features-item'>
<span>
<Icon name='checkmark-circle' fill='#27AB95' />
</span>
<div className='ml-2'>
Real-time technical support via chat and
Priority Email support
</div>
</Row>
</li>
</ul>
</div>
</div>
Expand Down
12 changes: 9 additions & 3 deletions frontend/web/components/modals/payment/pricingFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ export const STARTUP_FEATURES: PricingFeature[] = [
{
text: 'Unlimited projects',
},
{
text: 'Email technical support',
},
{
text: 'Scheduled flags',
},
{
text: 'Two-factor authentication (2FA)',
},
{
text: 'Email technical support',
},
]

export const SCALE_UP_FEATURES: PricingFeature[] = [
Expand All @@ -49,6 +49,9 @@ export const SCALE_UP_FEATURES: PricingFeature[] = [
{
text: 'Additional seats at $60/seat (up to 20)',
},
{
text: 'SAML',
},
{
text: 'User roles and permissions',
},
Expand All @@ -58,6 +61,9 @@ export const SCALE_UP_FEATURES: PricingFeature[] = [
{
text: 'Audit logs',
},
{
text: 'Real-time technical support via chat and Priority Email support',
},
]

export const ENTERPRISE_FEATURES: PricingFeature[] = [
Expand Down
Loading