-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path_plan.html.erb
53 lines (53 loc) · 3.21 KB
/
_plan.html.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="mt-8 pb-16 sm:mt-12 sm:pb-20 lg:pb-28">
<div class="relative">
<div class="absolute inset-0 h-1/3 bg-blue-50"></div>
<div class="relative mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<div class="mx-auto max-w-lg overflow-hidden rounded-lg shadow-lg lg:flex lg:max-w-none">
<div class="flex-1 bg-white px-6 py-8 lg:p-12">
<h3 class="text-2xl font-bold text-blue-900 sm:text-3xl sm:tracking-tight"><%= t(".title_html") %></h3>
<p class="mt-6 text-base text-blue-950 max-w-prose"><%= t(".description") %></p>
<div class="mt-8">
<div class="flex items-center">
<h4 class="flex-shrink-0 bg-white pr-4 text-base font-semibold text-blue-950"><%= t(".features.title") %></h4>
<div class="flex-1 border-t-2 border-gray-200"></div>
</div>
<ul role="list" class="mt-8 space-y-5 lg:grid lg:grid-cols-2 lg:gap-x-8 lg:gap-y-5 lg:space-y-0">
<%= render "pricing/plan_feature", title: t(".features.climate_html") %>
<%= render "pricing/plan_feature", title: t(".features.message") %>
<%= render "pricing/plan_feature", title: t(".features.warranty") %>
<%= render "pricing/plan_feature", title: t(".features.email_updates") %>
<%= render "pricing/plan_feature", title: t(".features.support") %>
<%= render "pricing/plan_feature", title: t(".features.oss") %>
</ul>
</div>
</div>
<div class="bg-white w-full lg:max-w-sm py-8 px-6 text-center lg:flex lg:flex-shrink-0 lg:flex-col lg:justify-center lg:p-12">
<div class="mt-4 flex items-center justify-center text-5xl font-bold tracking-tight text-blue-900">
<span>$99</span>
<span class="ml-2 text-xl font-medium tracking-normal text-blue-950"><%= t(".per_month") %></span>
</div>
<p class="mt-4 text-sm">
<a href="#hiring-fee" class="font-medium text-blue-950 underline"><%= t(".hiring_fee") %></a>
</p>
<div class="mt-6">
<div class="rounded-md shadow">
<%= render "pricing/purchase_button", title: t(".cta_monthly"), plan: :full_time, classes: "block w-full flex items-center justify-center rounded-md border border-transparent bg-blue-800 px-5 py-3 text-base font-medium text-white hover:bg-blue-900" %>
</div>
</div>
<div class="mt-10 flex items-center justify-center text-5xl font-bold tracking-tight text-blue-900">
<span>$999</span>
<span class="ml-2 text-xl font-medium tracking-normal text-blue-950"><%= t(".per_year") %></span>
</div>
<p class="mt-4 text-sm">
<a href="#hiring-fee" class="font-medium text-blue-950 underline"><%= t(".hiring_fee") %></a>
</p>
<div class="mt-6">
<div class="rounded-md shadow">
<%= render "pricing/purchase_button", title: t(".cta_annual"), plan: :annual, classes: "block w-full flex items-center justify-center rounded-md border border-transparent bg-blue-800 px-5 py-3 text-base font-medium text-white hover:bg-blue-900" %>
</div>
</div>
</div>
</div>
</div>
</div>
</div>