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

Commit 9797a79

Browse files
committed
[pricing] Fix Self-Hosted pricing
1 parent 3147f42 commit 9797a79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/pricing/Business.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ const Styled = styled.div`
3535
const Business = () => (
3636
<Styled>
3737
<section className="business">
38-
<h2>Self-Host Gitpod</h2>
38+
<h2>Gitpod Self-Hosted</h2>
3939
<p>Unleash Developer Productivity. Run your own Gitpod and enjoy automated setups, better collaboration, higher code quality and a more streamlined workflow.</p>
40-
<Link to="/self-hosted/" className="btn">Gitpod Self-Hosted</Link>
40+
<Link to="/self-hosted/" className="btn">Install Now</Link>
4141
</section>
4242
</Styled>
4343
)

src/components/pricing/PricingBoxes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ const selfHostedPlans: PricingBoxProps[] = [
5858
title: 'Professional Teams',
5959
img: <img alt='Rocket' src={Rocket} />,
6060
features: ['Unlimited Use', 'Private & Public Repos', 'Admin Dashboard', '30-Day Free Trial'],
61-
price: <>20$ <span>/ month</span></>,
62-
duration: 'Per additional user',
61+
price: <>{isEurope() ? '€18' : '$20'} <span>/ month</span></>,
62+
duration: 'Per user',
6363
btnText: 'Contact Sales',
6464
link: '/contact/'
6565
}

0 commit comments

Comments
 (0)