mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-26 08:11:17 +02:00
copy: add annual lifetime pricing hint
This commit is contained in:
@@ -53,6 +53,7 @@ export function Pro({ user, onLoginClick }) {
|
|||||||
<Stack gap={2} align="stretch">
|
<Stack gap={2} align="stretch">
|
||||||
<Card
|
<Card
|
||||||
price="Free"
|
price="Free"
|
||||||
|
subTitle=" "
|
||||||
name="Starter"
|
name="Starter"
|
||||||
features={[
|
features={[
|
||||||
'Unlimited private creations',
|
'Unlimited private creations',
|
||||||
@@ -63,6 +64,7 @@ export function Pro({ user, onLoginClick }) {
|
|||||||
<Card
|
<Card
|
||||||
bg="#674dad"
|
bg="#674dad"
|
||||||
price={'Starting $6/mo'}
|
price={'Starting $6/mo'}
|
||||||
|
subTitle="Annual & One-time pricing available"
|
||||||
name="Pro"
|
name="Pro"
|
||||||
action={
|
action={
|
||||||
window.user ? (
|
window.user ? (
|
||||||
@@ -105,7 +107,7 @@ export function Pro({ user, onLoginClick }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const Card = ({ bg, name, price, action, features }) => {
|
const Card = ({ bg, name, price, subTitle, action, features }) => {
|
||||||
return (
|
return (
|
||||||
<div class="plan-card" style={{ background: bg }}>
|
<div class="plan-card" style={{ background: bg }}>
|
||||||
<VStack gap={2} align="stretch" justify="flex-start">
|
<VStack gap={2} align="stretch" justify="flex-start">
|
||||||
@@ -114,9 +116,11 @@ const Card = ({ bg, name, price, action, features }) => {
|
|||||||
{name}
|
{name}
|
||||||
</Text>
|
</Text>
|
||||||
<Text size="5" weight="800" appearance="primary">
|
<Text size="5" weight="800" appearance="primary">
|
||||||
{' '}
|
|
||||||
{price}
|
{price}
|
||||||
</Text>
|
</Text>
|
||||||
|
<Text size="1" weight="400">
|
||||||
|
{subTitle}
|
||||||
|
</Text>
|
||||||
</VStack>
|
</VStack>
|
||||||
{action}
|
{action}
|
||||||
{!action && (
|
{!action && (
|
||||||
|
Reference in New Issue
Block a user