mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-23 23:11:12 +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">
|
||||
<Card
|
||||
price="Free"
|
||||
subTitle=" "
|
||||
name="Starter"
|
||||
features={[
|
||||
'Unlimited private creations',
|
||||
@@ -63,6 +64,7 @@ export function Pro({ user, onLoginClick }) {
|
||||
<Card
|
||||
bg="#674dad"
|
||||
price={'Starting $6/mo'}
|
||||
subTitle="Annual & One-time pricing available"
|
||||
name="Pro"
|
||||
action={
|
||||
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 (
|
||||
<div class="plan-card" style={{ background: bg }}>
|
||||
<VStack gap={2} align="stretch" justify="flex-start">
|
||||
@@ -114,9 +116,11 @@ const Card = ({ bg, name, price, action, features }) => {
|
||||
{name}
|
||||
</Text>
|
||||
<Text size="5" weight="800" appearance="primary">
|
||||
{' '}
|
||||
{price}
|
||||
</Text>
|
||||
<Text size="1" weight="400">
|
||||
{subTitle}
|
||||
</Text>
|
||||
</VStack>
|
||||
{action}
|
||||
{!action && (
|
||||
|
Reference in New Issue
Block a user