diff --git a/web/app/components/billing/pricing/assets/community.tsx b/web/app/components/billing/pricing/assets/community.tsx new file mode 100644 index 0000000000..7037f63b6c --- /dev/null +++ b/web/app/components/billing/pricing/assets/community.tsx @@ -0,0 +1,96 @@ +const Community = () => { + return ( + + ) +} + +export default Community diff --git a/web/app/components/billing/pricing/assets/enterprise.tsx b/web/app/components/billing/pricing/assets/enterprise.tsx new file mode 100644 index 0000000000..70a3520903 --- /dev/null +++ b/web/app/components/billing/pricing/assets/enterprise.tsx @@ -0,0 +1,96 @@ +const Enterprise = () => { + return ( + + ) +} + +export default Enterprise diff --git a/web/app/components/billing/pricing/assets/index.tsx b/web/app/components/billing/pricing/assets/index.tsx index 6e34fdfe98..9e0eb8eced 100644 --- a/web/app/components/billing/pricing/assets/index.tsx +++ b/web/app/components/billing/pricing/assets/index.tsx @@ -1,2 +1,8 @@ export { default as Cloud } from './cloud' export { default as SelfHosted } from './self-hosted' +export { default as Sandbox } from './sandbox' +export { default as Professional } from './professional' +export { default as Team } from './team' +export { default as Community } from './community' +export { default as Premium } from './premium' +export { default as Enterprise } from './enterprise' diff --git a/web/app/components/billing/pricing/assets/premium.tsx b/web/app/components/billing/pricing/assets/premium.tsx new file mode 100644 index 0000000000..dcd04f61ec --- /dev/null +++ b/web/app/components/billing/pricing/assets/premium.tsx @@ -0,0 +1,96 @@ +const Premium = () => { + return ( + + ) +} + +export default Premium diff --git a/web/app/components/billing/pricing/assets/professional.tsx b/web/app/components/billing/pricing/assets/professional.tsx new file mode 100644 index 0000000000..5cfff9c9a0 --- /dev/null +++ b/web/app/components/billing/pricing/assets/professional.tsx @@ -0,0 +1,96 @@ +const Professional = () => { + return ( + + ) +} + +export default Professional diff --git a/web/app/components/billing/pricing/assets/sandbox.tsx b/web/app/components/billing/pricing/assets/sandbox.tsx new file mode 100644 index 0000000000..4b7f98147d --- /dev/null +++ b/web/app/components/billing/pricing/assets/sandbox.tsx @@ -0,0 +1,96 @@ +const Sandbox = () => { + return ( + + ) +} + +export default Sandbox diff --git a/web/app/components/billing/pricing/assets/team.tsx b/web/app/components/billing/pricing/assets/team.tsx new file mode 100644 index 0000000000..9e46f55ba8 --- /dev/null +++ b/web/app/components/billing/pricing/assets/team.tsx @@ -0,0 +1,96 @@ +const Team = () => { + return ( + + ) +} + +export default Team diff --git a/web/app/components/billing/pricing/plans/cloud-plan-item/index.tsx b/web/app/components/billing/pricing/plans/cloud-plan-item/index.tsx index a4e3e819ae..4862439f6a 100644 --- a/web/app/components/billing/pricing/plans/cloud-plan-item/index.tsx +++ b/web/app/components/billing/pricing/plans/cloud-plan-item/index.tsx @@ -11,11 +11,12 @@ import { useAppContext } from '@/context/app-context' import { fetchSubscriptionUrls } from '@/service/billing' import List from './list' import Button from './button' +import { Professional, Sandbox, Team } from '../../assets' const ICON_MAP = { - [Plan.sandbox]:
, - [Plan.professional]: , - [Plan.team]: , + [Plan.sandbox]: