2
0

anpassen der Pläne

This commit is contained in:
2024-09-12 14:01:31 +02:00
parent 7ee7c74017
commit 09282ae82e
3 changed files with 9 additions and 9 deletions

View File

@ -46,7 +46,7 @@ export const PlanTag = ({
data-testid="starter-plan-tag" data-testid="starter-plan-tag"
{...props} {...props}
> >
Starter Duo
</Tag> </Tag>
) )
} }
@ -57,7 +57,7 @@ export const PlanTag = ({
data-testid="free-plan-tag" data-testid="free-plan-tag"
{...props} {...props}
> >
Free Starter
</Tag> </Tag>
) )
} }
@ -68,7 +68,7 @@ export const PlanTag = ({
data-testid="custom-plan-tag" data-testid="custom-plan-tag"
{...props} {...props}
> >
Custom Expert
</Tag> </Tag>
) )
} }
@ -79,7 +79,7 @@ export const PlanTag = ({
data-testid="custom-unlimite-tag" data-testid="custom-unlimite-tag"
{...props} {...props}
> >
Unlimited BLS media - intern
</Tag> </Tag>
) )
} }

View File

@ -4,7 +4,7 @@ export const planToReadable = (plan?: Plan) => {
if (!plan) return if (!plan) return
switch (plan) { switch (plan) {
case Plan.FREE: case Plan.FREE:
return 'Free' return 'Starter'
case Plan.LIFETIME: case Plan.LIFETIME:
return 'Lifetime' return 'Lifetime'
case Plan.OFFERED: case Plan.OFFERED:
@ -12,6 +12,6 @@ export const planToReadable = (plan?: Plan) => {
case Plan.PRO: case Plan.PRO:
return 'Pro' return 'Pro'
case Plan.UNLIMITED: case Plan.UNLIMITED:
return 'Unlimited' return 'BLS media - intern'
} }
} }

View File

@ -7,9 +7,9 @@ export const prices = {
} as const } as const
export const chatsLimits = { export const chatsLimits = {
[Plan.FREE]: 200, [Plan.FREE]: 150,
[Plan.STARTER]: 2000, [Plan.STARTER]: 500,
[Plan.PRO]: 10000, [Plan.PRO]: 2000,
} as const } as const
export const seatsLimits = { export const seatsLimits = {