diff --git a/data/billing.py b/data/billing.py index e1510c054..eb2bdcbb8 100644 --- a/data/billing.py +++ b/data/billing.py @@ -15,6 +15,7 @@ PLANS = [ 'audience': 'For smaller teams', 'bus_features': False, 'deprecated': True, + 'free_trial_days': 14, }, { 'title': 'Basic', @@ -24,24 +25,37 @@ PLANS = [ 'audience': 'For your basic team', 'bus_features': False, 'deprecated': True, + 'free_trial_days': 14, }, { - 'title': 'Medium', - 'price': 2200, - 'privateRepos': 20, - 'stripeId': 'medium', - 'audience': 'For medium teams', - 'bus_features': False, - 'deprecated': True, - }, - { - 'title': 'Large', + 'title': 'Yacht', 'price': 5000, - 'privateRepos': 50, - 'stripeId': 'large', - 'audience': 'For larger teams', + 'privateRepos': 20, + 'stripeId': 'bus-coreos-trial', + 'audience': 'For small businesses', + 'bus_features': True, + 'deprecated': True, + 'free_trial_days': 180, + }, + { + 'title': 'Personal', + 'price': 1200, + 'privateRepos': 5, + 'stripeId': 'personal', + 'audience': 'Individuals', 'bus_features': False, 'deprecated': True, + 'free_trial_days': 14, + }, + { + 'title': 'Skiff', + 'price': 2500, + 'privateRepos': 10, + 'stripeId': 'bus-micro', + 'audience': 'For startups', + 'bus_features': True, + 'deprecated': True, + 'free_trial_days': 14, }, { 'title': 'Yacht', @@ -51,6 +65,27 @@ PLANS = [ 'audience': 'For small businesses', 'bus_features': True, 'deprecated': True, + 'free_trial_days': 14, + }, + { + 'title': 'Freighter', + 'price': 10000, + 'privateRepos': 50, + 'stripeId': 'bus-medium', + 'audience': 'For normal businesses', + 'bus_features': True, + 'deprecated': True, + 'free_trial_days': 14, + }, + { + 'title': 'Tanker', + 'price': 20000, + 'privateRepos': 125, + 'stripeId': 'bus-large', + 'audience': 'For large businesses', + 'bus_features': True, + 'deprecated': True, + 'free_trial_days': 14, }, # Active plans @@ -62,51 +97,57 @@ PLANS = [ 'audience': 'Committment to FOSS', 'bus_features': False, 'deprecated': False, + 'free_trial_days': 30, }, { 'title': 'Personal', 'price': 1200, 'privateRepos': 5, - 'stripeId': 'personal', + 'stripeId': 'personal-30', 'audience': 'Individuals', 'bus_features': False, 'deprecated': False, + 'free_trial_days': 30, }, { 'title': 'Skiff', 'price': 2500, 'privateRepos': 10, - 'stripeId': 'bus-micro', + 'stripeId': 'bus-micro-30', 'audience': 'For startups', 'bus_features': True, 'deprecated': False, + 'free_trial_days': 30, }, { 'title': 'Yacht', 'price': 5000, 'privateRepos': 20, - 'stripeId': 'bus-coreos-trial', + 'stripeId': 'bus-small-30', 'audience': 'For small businesses', 'bus_features': True, 'deprecated': False, + 'free_trial_days': 30, }, { 'title': 'Freighter', 'price': 10000, 'privateRepos': 50, - 'stripeId': 'bus-medium', + 'stripeId': 'bus-medium-30', 'audience': 'For normal businesses', 'bus_features': True, 'deprecated': False, + 'free_trial_days': 30, }, { 'title': 'Tanker', 'price': 20000, 'privateRepos': 125, - 'stripeId': 'bus-large', + 'stripeId': 'bus-large-30', 'audience': 'For large businesses', 'bus_features': True, 'deprecated': False, + 'free_trial_days': 30, }, ] diff --git a/static/css/quay.css b/static/css/quay.css index 67b308f06..bd8e3873a 100644 --- a/static/css/quay.css +++ b/static/css/quay.css @@ -838,12 +838,12 @@ i.toggle-icon:hover { font-size: 1.4em; } -.plans-list .plan.bus-small, .plans-list .plan.bus-coreos-trial { +.plans-list .plan.bus-small, .plans-list .plan.bus-small-30 { border-top: 6px solid #46ac39; margin-top: -10px; } -.plans-list .plan.bus-small .plan-box, .plans-list .plan.bus-coreos-trial .plan-box { +.plans-list .plan.bus-small .plan-box, .plans-list .plan.bus-small-30 .plan-box { background: black !important; } @@ -934,7 +934,7 @@ i.toggle-icon:hover { margin-bottom: 6px; } -.plans-list .plan.bus-small button, .plans-list .plan.bus-coreos-trial button { +.plans-list .plan.bus-small button, .plans-list .plan.bus-small-30 button { font-size: 1em; } @@ -942,7 +942,7 @@ i.toggle-icon:hover { padding-top: 248px; } -.plans-list .features-bar .feature .count { +.plans-list .features-bar .feature .count-panel { padding: 10px; } @@ -972,7 +972,8 @@ i.toggle-icon:hover { padding-bottom: 0px; } -.plans-list .plan .feature { +.plans-list .plan .feature, +.plans-list .plan .count-feature { text-align: center; padding: 10px; border-bottom: 1px solid #ddd; @@ -1008,7 +1009,7 @@ i.toggle-icon:hover { background: #46ac39; } -.plans-list .plan .count, .plans-list .features-bar .count { +.plans-list .plan .count-panel, .plans-list .features-bar .count-panel { background: white; border-bottom: 0px; text-align: center !important; @@ -1016,8 +1017,7 @@ i.toggle-icon:hover { padding: 10px; } -.plans-list .plan .count b, .plans-list .features-bar .count b { - font-size: 1.5em; +.plans-list .plan .count-panel b, .plans-list .features-bar .count-panel b { display: block; } @@ -1048,14 +1048,20 @@ i.toggle-icon:hover { } } -.plans-list .plan .count { +.plans-list .plan .count-panel { margin-bottom: 10px; } .plans-list .plan .count b { + font-size: 1.5em; + vertical-align: text-bottom; color: #428bca; } +.plans-list .plan .count-feature { + line-height: 1.5em; +} + .plans-list .plan.business-plan .count b { color: #46ac39; } @@ -1879,7 +1885,7 @@ p.editable:hover i { margin-right: 10px; } -.repo .repo-controls .count { +.repo .repo-controls .count-panel { display: inline-block; padding-left: 4px; padding-right: 4px; @@ -1895,7 +1901,7 @@ p.editable:hover i { -moz-transition: -moz-transform 500ms ease-in-out; } -.repo .repo-controls .count.visible { +.repo .repo-controls .count-panel.visible { transform: scaleX(1); -webkit-transform: scaleX(1); -moz-transform: scaleX(1); diff --git a/static/partials/landing-normal.html b/static/partials/landing-normal.html index 084010fe0..85181fd05 100644 --- a/static/partials/landing-normal.html +++ b/static/partials/landing-normal.html @@ -12,7 +12,7 @@

Secure hosting for private Docker* repositories

Use the Docker images your team needs with the safety of private repositories

- Get 20 free private repos for 6 months + Start your free 30 day trial today
diff --git a/static/partials/plans.html b/static/partials/plans.html index dd7ffd628..5c62a9444 100644 --- a/static/partials/plans.html +++ b/static/partials/plans.html @@ -41,13 +41,6 @@
-
- - Teams - - -
@@ -55,11 +48,18 @@
+
+ + Teams + + +
- Free Trial - Free Trial + Free Trial Days + Free Trial Days
@@ -76,27 +76,27 @@
-
{{ plan.privateRepos }} private repositories
+
{{ plan.privateRepos }} private repositories
Unlimited Public Repositories
SSL Encryption
Robot accounts
Dockerfile Build
Invoice History
+
Logging
Teams
-
Logging
-
Free Trial
+
{{ plan.free_trial_days }} Days Free