-
Notifications
You must be signed in to change notification settings - Fork 2
/
directpricing.html
45 lines (38 loc) · 1.35 KB
/
directpricing.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
---
title: Spoke
layout: page
override:
heading: Interested in hosting Spoke yourself? Check out our direct pricing.
description:
- We offer a direct pricing model comparable to hosting Spoke yourself - $1.00/mo per sending number, 0.75¢ per SMS segment (inbound / outbound), and 2¢ per MMS segment (inbound / outbound).
- This pricing can be cheaper if you are comfortable managing telecom resources yourself. However, the majority of clients we work with have found the direct pricing to be confusing and difficult to budget.
- Contact us at <a href="mailto:[email protected]">[email protected]</a> to learn more.
---
<section class="hero">
<div class="text-container">
<h1>{{ page.override.heading }}</h1>
{% for item in page.override.description %}
<p>{{ item }}</p>
{% endfor %}
<div class="button signup-cta" style="margin: 40px auto 20px;">
<a href="mailto:[email protected]">Contact us →</a>
</div>
</div>
</section>
{% for section in page.sections %}
<section>
<div class="container flex">
<div class="text">
<h2>{{ section.title }}</h2>
<p class="subtext">{{ section.content }}</p>
</div>
<div class="image">
{% if section.image %}
<img src="/images/{{ section.image }}" />
{% else %}
[Placeholder]
{% endif %}
</div>
</div>
</section>
{% endfor %}