feat: subscription page content

This commit is contained in:
Ahmed Bouhuolia
2024-04-16 12:54:36 +02:00
parent 8ca9cf39da
commit f9cb14da9e
6 changed files with 41 additions and 129 deletions

View File

@@ -4,6 +4,7 @@ import { T } from '@/components';
import { SubscriptionPlans } from './SubscriptionPlan';
import withPlans from '../../Subscriptions/withPlans';
import { compose } from '@/utils';
import { Callout, Intent } from '@blueprintjs/core';
/**
* Billing plans.
@@ -11,10 +12,14 @@ import { compose } from '@/utils';
function SubscriptionPlansSectionRoot({ plans }) {
return (
<section>
<p className="paragraph" style={{ marginBottom: '1.2rem' }}>
<T id={'setup.plans.select_plan.description'} />
</p>
<Callout
style={{ marginBottom: '1.5rem' }}
icon={null}
title={'Early Adaptors Plan'}
>
We're looking for 200 early adaptors, when you subscribe you'll get
the full features and unlimited users for a year regardless of the subscribed plan.
</Callout>
<SubscriptionPlans plans={plans} />
</section>
);