Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pricing: hide "Basic" plan and show "Enterprise" #316

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 28 additions & 14 deletions content/pages/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,6 @@ <h1 class="ui medium header">
<div class="ui centered three column tablet stackable grid">
<div class="stretched row">

{% call pricing.plan(
name="Basic plan",
price="$50",
color="violet",
) %}
<div class="ui list relaxed divided">
{# TODO: Replace "core" with better terms. Not sure what is best though.. #}
{{ pricing.plan_feature("<em>Includes all <b>core</b> features</em>", "<a href='#compare'>Compare plan features</a>", "fa-object-intersect", color="violet") }}
{{ pricing.plan_feature("Concurrent builds", "2 concurrent builds", "fa-rectangle-vertical-history fa-swap-opacity") }}
{{ pricing.plan_feature("Support", "2 business day response", "fa-message-question") }}
{{ pricing.plan_feature("Single sign-on (SSO)", "With GitHub and GitLab", "fa-key-skeleton") }}
</div>
{% endcall %}

{% call pricing.plan(
name="Advanced plan",
price="$150",
Expand Down Expand Up @@ -78,6 +64,34 @@ <h1 class="ui medium header">
</div>
{% endcall %}

<div class="column">
<div class="ui padded inverted violet segment">
<h3 class="ui small header">
<i class="fad fa-building icon"></i>
<span class="content">
Enterprise plan
</span>
</h3>

<p>
If your organization has specific needs that aren't met by our self-serve plans, we offer enterprise plans that can be customized to your requirements.
</p>

<div class="ui inverted list relaxed divided">
{{ pricing.plan_feature("Custom builders", None, "fa-robot fa-swap-opacity") }}
{{ pricing.plan_feature("Support SLA", None, "fa-question") }}
{{ pricing.plan_feature("SAML SSO", None, "fa-shield-keyhole") }}
{{ pricing.plan_feature("Custom build images", None, "fa-forklift") }}
{{ pricing.plan_feature("Advanced audit tracking", None, "fa-eyes") }}
{{ pricing.plan_feature("Custom integrations", None, "fa-lightbulb") }}
</div>

<p class="ui center aligned basic segment">
<a class="ui inverted button" href="./enterprise/">Tell us more</a>
</p>
</div>
</div>

</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion content/partials/pricing.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2 class="ui small monospace center aligned header">
{{ caller() }}

{% if highlight %}
<div class="ui teal bottom attached label">
<div class="ui violet bottom attached label">
<i class="fas fa-fire icon"></i>
Our most popular plan
</div>
Expand Down
Loading