UpgradeExistingOrganizationCallout.tsx31 lines · main
| 1 | import { Admonition } from 'ui-patterns' |
| 2 | |
| 3 | import { InlineLink } from '@/components/ui/InlineLink' |
| 4 | import Panel from '@/components/ui/Panel' |
| 5 | import { DOCS_URL } from '@/lib/constants' |
| 6 | |
| 7 | export const UpgradeExistingOrganizationCallout = () => { |
| 8 | return ( |
| 9 | <Panel.Content> |
| 10 | <Admonition |
| 11 | type="default" |
| 12 | title="Looking to upgrade an existing project?" |
| 13 | description={ |
| 14 | <div> |
| 15 | <p className="text-sm text-foreground-light"> |
| 16 | Briven{' '} |
| 17 | <InlineLink href={`${DOCS_URL}/guides/platform/billing-on-briven`}> |
| 18 | bills per organization |
| 19 | </InlineLink> |
| 20 | . If you want to upgrade your existing projects,{' '} |
| 21 | <InlineLink href="/org/_/billing?panel=subscriptionPlan"> |
| 22 | upgrade your existing organization |
| 23 | </InlineLink>{' '} |
| 24 | instead. |
| 25 | </p> |
| 26 | </div> |
| 27 | } |
| 28 | /> |
| 29 | </Panel.Content> |
| 30 | ) |
| 31 | } |