UpgradeExistingOrganizationCallout.tsx 968 B

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