Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit 55609ba

Browse files
committed
[pricing] Fix Self-Hosted buttons
1 parent 26a1d13 commit 55609ba

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/components/self-hosted/SelfHostedPlans.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ const plans: SelfHostedPlanProps[] = [
4949
title: 'Free',
5050
subtitle: 'For up to 5 users',
5151
features: ['Unlimited Hours', 'Private & Public Repos', 'Admin dashboard'],
52-
btnText: 'Contact Sales',
53-
href: '' // Todo add the href value
52+
btnText: 'Install Now',
53+
href: '/docs/self-hosted/latest/self-hosted/'
5454
},
5555
{
5656
title: <>$20 <span>/month</span></>,
5757
subtitle: 'per user',
5858
features: ['Unlimited Hours', 'Private & Public Repos', 'Admin dashboard', '30-day free trial'],
5959
btnText: 'Contact Sales',
60-
href: '' // Todo add the href value
60+
href: '/contact/'
6161
}
6262
]
6363

@@ -66,13 +66,12 @@ const SelfHostedPlans = () => (
6666
<div className="row">
6767
<div className="plans">
6868
<h3>Self-Host Gitpod</h3>
69-
<p>Host Gitpod on your own infrastructure. Learn More.</p>
69+
<p>Host Gitpod on your own infrastructure. <Link to="/docs/self-hosted/latest/self-hosted/">Learn More</Link>.</p>
7070
<div className="plans__container">
7171
{
7272
plans.map((plan: SelfHostedPlanProps, i) => <SelfHostedPlan key={`${i}+${plan.title}`} {...plan} /> )
7373
}
7474
</div>
75-
<Link to="/docs/self-hosted/latest/self-hosted/" className="btn btn--cta">View Install Instructions</Link>
7675
<object role="presentation" tabIndex={-1} data={Cloud} />
7776
</div>
7877
</div>

0 commit comments

Comments
 (0)