Skip to content

Commit f1b3717

Browse files
author
Sean Loiselle
authored
Merge pull request MaterializeInc#3389 from sploiselle/slack-promo
docs: marketingize the install page
2 parents bbe0726 + 93d1ea6 commit f1b3717

File tree

6 files changed

+56
-9
lines changed

6 files changed

+56
-9
lines changed

doc/user/assets/sass/_content.scss

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,27 @@ a {
207207
margin: 16px 0;
208208
padding: 16px;
209209
}
210+
211+
.promo {
212+
background-color: #d12fa7;
213+
color: #fff;
214+
margin: 16px 0;
215+
padding: 16px;
216+
text-align: center;
217+
a {
218+
color: #fff;
219+
}
220+
}
221+
222+
.cta-green {
223+
background-color: $purple;
224+
color: #fff;
225+
display: inline-block;
226+
margin: 16px 0 0 0;
227+
padding: 16px;
228+
a {
229+
color: #fff;
230+
font-weight: bold;
231+
}
232+
}
210233
}

doc/user/content/_index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ Materialize is a streaming database for real-time applications. Materialize
1212
accepts input data from a variety of streaming sources (e.g. Kafka) and files
1313
(e.g. CSVs), and lets you query them using SQL.
1414

15+
{{< cta >}}
16+
17+
[Install Materialize →](./install)
18+
19+
{{</ cta >}}
20+
1521
## What does Materialize do?
1622

1723
Materialize lets you ask questions about your data, and then get low-latency,
@@ -42,6 +48,6 @@ and instead provide sub-second or single-digit second answers.
4248

4349
## Learn more
4450

51+
- [**Install Materialize**](./install) to try it out.
4552
- [**What is Materialize?**](./overview/what-is-materialize) to learn more about what Materialize does and how it works.
4653
- [**Architecture documentation**](./overview/architecture) for a deeper dive into the `materialized` binary's components and deployment.
47-
- [**Getting started guide**](./get-started) to get hands-on experience with Materialize.

doc/user/content/get-started.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ Wikipedia.
212212

213213
Once you're done, don't forget to stop `curl` and `rm wikirecent`.
214214

215-
## Up next
215+
{{< cta >}}
216216

217-
Check out our [architecture overview](/overview/architecture).
217+
[Next, see how Materialize can work as an entire microservices →](/docs/demos/microservice)
218+
219+
{{</ cta >}}

doc/user/content/install.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ menu: "main"
55
weight: 2
66
---
77

8+
{{< promo >}}
9+
10+
[Want to connect with Materialize? Join our growing community on Slack! →](https://materializecommunity.slack.com/join/shared_invite/zt-f0qdaz1v-NgGIuxK7Rm1H4AjvJEO8bQ#/)
11+
12+
{{< /promo >}}
13+
814
You can access Materialize through the `materialized` binary, which you can
9-
install on macOS and Linux. These instructions install the latest release of
10-
Materialize, **{{< version >}}**. For prior releases, see the [Versions
11-
page](/versions).
15+
install on macOS and Linux, or [build](#build-from-source) on most OSes (e.g. FreeBSD). These
16+
instructions install the latest release of Materialize, **{{< version >}}**. For
17+
prior releases, see the [Versions page](/versions).
1218

13-
**Note**: We have unofficial support for other operating systems, e.g. FreeBSD, if you [build from source](#build-from-source).
19+
**Have any questions?** [Contact us](https://materialize.io/contact/)
1420

1521
## macOS installation
1622

@@ -89,6 +95,8 @@ Detail | Info
8995

9096
For more information, see [CLI Connections](/connect/cli/).
9197

92-
## Up next
98+
{{< cta >}}
99+
100+
[Next, let's get started with Materialize →](/docs/get-started)
93101

94-
With `materialized` installed, let's [get started](/get-started).
102+
{{</ cta >}}

doc/user/layouts/shortcodes/cta.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<div class="cta">
2+
<p class="cta-green">
3+
{{ .Inner | markdownify }}
4+
</p>
5+
</div>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div class="promo">
2+
{{ .Inner | markdownify }}
3+
</div>

0 commit comments

Comments
 (0)