Skip to content

Commit

Permalink
Pricing: hide "Basic" plan and show "Enterprise"
Browse files Browse the repository at this point in the history
I copied the text and features from http://localhost:8080/pricing/enterprise/

Closes #289
  • Loading branch information
humitos committed Jul 24, 2024
1 parent 329050f commit 819324b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 15 deletions.
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

0 comments on commit 819324b

Please sign in to comment.