mirror of
https://github.com/supabase/supabase.git
synced 2026-05-15 23:31:24 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
32 lines
972 B
TypeScript
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>
|
|
)
|
|
}
|