Files
supabase/apps/studio/components/interfaces/Organization/NewOrg/UpgradeExistingOrganizationCallout.tsx
2026-04-01 10:22:37 +02:00

32 lines
972 B
TypeScript

import { Admonition } from 'ui-patterns'
import { InlineLink } from '@/components/ui/InlineLink'
import Panel from '@/components/ui/Panel'
import { DOCS_URL } from '@/lib/constants'
export const UpgradeExistingOrganizationCallout = () => {
return (
<Panel.Content>
<Admonition
type="default"
title="Looking to upgrade an existing project?"
description={
<div>
<p className="text-sm text-foreground-light">
Supabase{' '}
<InlineLink href={`${DOCS_URL}/guides/platform/billing-on-supabase`}>
bills per organization
</InlineLink>
. If you want to upgrade your existing projects,{' '}
<InlineLink href="/org/_/billing?panel=subscriptionPlan">
upgrade your existing organization
</InlineLink>{' '}
instead.
</p>
</div>
}
/>
</Panel.Content>
)
}