Skip to content

Commit

Permalink
chore: replace pricing plan link (#5886)
Browse files Browse the repository at this point in the history
close TOV-609
  • Loading branch information
JimmFly committed Feb 23, 2024
1 parent 9692a12 commit 815ddd3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const ActionButton = ({

// contact
if (detail.type === 'dynamic') {
return <ContactSales />;
return <BookDemo plan={detail.plan} />;
}

// not signed in
Expand Down Expand Up @@ -334,17 +334,28 @@ const Downgrade = ({
);
};

const ContactSales = () => {
const BookDemo = ({ plan }: { plan: SubscriptionPlan }) => {
const t = useAFFiNEI18N();
const url = useMemo(() => {
switch (plan) {
case SubscriptionPlan.Team:
return 'https://6dxre9ihosp.typeform.com/to/niBcdkvs';
case SubscriptionPlan.Enterprise:
return 'https://6dxre9ihosp.typeform.com/to/rFfobTjf';
default:
return 'https://affine.pro/pricing';
}
}, [plan]);

return (
<a
className={styles.planAction}
href="https://6dxre9ihosp.typeform.com/to/uZeBtpPm"
href={url}
target="_blank"
rel="noreferrer"
>
<Button className={styles.planAction} type="primary">
{t['com.affine.payment.contact-sales']()}
{t['com.affine.payment.book-a-demo']()}
</Button>
</a>
);
Expand Down
1 change: 1 addition & 0 deletions packages/frontend/i18n/src/resources/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,7 @@
"com.affine.payment.buy-pro": "Buy Pro",
"com.affine.payment.change-to": "Change to {{to}} Billing",
"com.affine.payment.contact-sales": "Contact Sales",
"com.affine.payment.book-a-demo": "Book a Demo",
"com.affine.payment.current-plan": "Current Plan",
"com.affine.payment.disable-payment.description": "This is a special testing(Canary) version of AFFiNE. Account upgrades are not supported in this version. If you want to experience the full service, please download the stable version from our website.",
"com.affine.payment.disable-payment.title": "Account Upgrade Unavailable",
Expand Down

0 comments on commit 815ddd3

Please sign in to comment.