update: lower pricing to $12
This commit is contained in:
parent
d52026f787
commit
e19e723d49
|
|
@ -1,7 +1,7 @@
|
|||
export const PLANS = {
|
||||
pro: {
|
||||
label: "Pro",
|
||||
monthlyUsd: 14,
|
||||
monthlyUsd: 12,
|
||||
},
|
||||
lifetime: {
|
||||
label: "Lifetime",
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
<label for="plan-pro"
|
||||
class="cursor-pointer text-left bg-gray-900 border-2 border-gray-800 hover:border-blue-500/50 rounded-xl p-5 transition-colors">
|
||||
<div class="text-xs text-gray-500 uppercase tracking-wider font-mono mb-1">Pro</div>
|
||||
<div class="text-2xl font-bold text-gray-100">$14<span class="text-sm font-normal text-gray-500">/mo</span></div>
|
||||
<div class="text-2xl font-bold text-gray-100">$12<span class="text-sm font-normal text-gray-500">/mo</span></div>
|
||||
<div class="text-xs text-gray-500 mt-2">500 monitors, 2s intervals</div>
|
||||
</label>
|
||||
<label for="plan-lifetime"
|
||||
|
|
@ -52,7 +52,7 @@
|
|||
<label class="block text-sm text-gray-400 mb-2">How many months?</label>
|
||||
<select name="months" class="bg-gray-900 border border-gray-800 rounded-lg px-4 py-2.5 text-gray-100 focus:outline-none focus:border-blue-500">
|
||||
<% for (let i = 1; i <= 12; i++) { %>
|
||||
<option value="<%= i %>"><%= i %> month<%= i > 1 ? 's' : '' %> — $<%= i * 14 %></option>
|
||||
<option value="<%= i %>"><%= i %> month<%= i > 1 ? 's' : '' %> — $<%= i * 12 %></option>
|
||||
<% } %>
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -508,7 +508,7 @@
|
|||
<!-- Pro -->
|
||||
<div class="rounded-xl border border-blue-500/30 bg-[#111] p-8 text-left relative">
|
||||
<div class="text-xs text-gray-500 uppercase tracking-wider font-mono mb-2">Pro</div>
|
||||
<div class="text-4xl font-bold mb-1">$14</div>
|
||||
<div class="text-4xl font-bold mb-1">$12</div>
|
||||
<div class="text-sm text-gray-500 mb-6">per month</div>
|
||||
<ul class="space-y-3 text-sm text-gray-400">
|
||||
<li class="flex items-center gap-2">
|
||||
|
|
|
|||
Loading…
Reference in New Issue