-
Notifications
You must be signed in to change notification settings - Fork 2
/
pricing.html
89 lines (80 loc) · 3.19 KB
/
pricing.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
title: Pricing
override:
heading: Peer-to-peer texting at no markup
description: We charge the same amount per message as it would cost to host it yourself but without the infrastructure costs - no setup fee.
pricing_table:
- name: Pricing by unit
color: "#FF0000"
features:
- text: 1¢ per outbound SMS segment
highlight: false
- text: 1¢ per inbound SMS segment
highlight: false
- text: 3¢ per outbound MMS segment
highlight: false
- text: 3¢ per inbound MMS segment
highlight: false
- text: Contact validation at .25¢ per phone number</br>(Confirm your numbers are textable!)
highlight: false
- text: Access to helpdesk to file tickets with developers
highlight: false
call_to_action:
link: /signup/
text: Get started
- name: "With 1 million numbers"
color: "#FF0000"
features:
- text: "First validate the numbers: <br><br>$0.0025 per number x 1 million numbers = <br>$2,500"
highlight: false
- text: "Roughly half will be textable: <br><br>$0.01 per segment x 0.5 million 1-segment texts = <br>$5,000"
highlight: false
- text: Total cost = $7,500
highlight: false
<!-- TODO: Fix FAQ; add sample pricing or more transparent pricing model. -->
faq:
- question: Can I host Spoke myself?
answer: <span class="answer">Yes, explore our direct pricing option <a href="/directpricing/">here</a>.</span>
- question: What types of payment do you accept?
answer: <span class="answer">We accept all major credit cards and electronic ACH transfers.</span>
- question: How do you handle billing?
answer: <span class="answer">We bill at the end of the month for usage-based products (SMS segments, phone numbers), and at the top of the month for license-based products (consulting, database services, etc.)</span>
- question: Questions about pricing or interested in scheduling a demo?
answer: <span class="answer">Please reach out at <a href="mailto:[email protected]">[email protected]</a>.</span>
- question: What is the difference between a SMS segment and a SMS message?
answer: <span class="answer">You can read about the difference here - <a href="https://docs.spokerewired.com/article/89-segments-and-encodings">segments and encodings</a>.</span>
---
<section class="hero">
<div class="text-container">
<h1>{{ page.override.heading }}</h1>
{% for item in page.override.description %}
<p>{{ item }}</p>
{% endfor %}
</div>
</section>
<section>
<div class="plans">
{% for plan in page.pricing_table %}
<ul class="plan">
<li class="bg-color">
<h3>{{ plan.name }}</h3>
</li>
{% for feature in plan.features %}
<li {% if feature.highlight %} class="highlighted"{% endif %}>{{ feature.text }}</li>
{% endfor %}
{% if plan.call_to_action %}
<li class="pricing-cta"><a class="bg-color" href="{{ plan.call_to_action.link }}">{{ plan.call_to_action.text }} →</a></li>
{% endif %}
</ul>
{% endfor %}
</div>
{% if page.faq %}
<h2>Pricing FAQ</h2>
<div class="faq">
{% for item in page.faq %}
<h3>{{ item.question }}</h3>
{{ item.answer }}
{% endfor %}
</div>
{% endif %}
</section>