website refactor
This commit is contained in:
@@ -8,6 +8,7 @@ export interface PricingTier {
|
||||
id: string;
|
||||
name: string;
|
||||
price: number;
|
||||
priceLabel: string;
|
||||
period: string;
|
||||
description: string;
|
||||
features: string[];
|
||||
@@ -69,7 +70,7 @@ export function PricingTableShell({ title, tiers, onSelect, selectedId }: Pricin
|
||||
{tier.name}
|
||||
</Text>
|
||||
<Stack direction="row" align="baseline" gap={1}>
|
||||
<Text size="3xl" weight="bold" color="text-white">${tier.price}</Text>
|
||||
<Text size="3xl" weight="bold" color="text-white">{tier.priceLabel}</Text>
|
||||
<Text size="sm" color="text-gray-500">/{tier.period}</Text>
|
||||
</Stack>
|
||||
<Text size="sm" color="text-gray-400" block mt={2}>
|
||||
|
||||
Reference in New Issue
Block a user