Skip to content

Commit 31571a9

Browse files
committed
feat(blocklists): redesign getting started page with path cards and comparison table
1 parent 8944c46 commit 31571a9

1 file changed

Lines changed: 27 additions & 11 deletions

File tree

crowdsec-docs/unversioned/blocklists/getting_started.mdx

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ New to CrowdSec blocklists? Read the [Introduction](/u/blocklists/intro) first t
2020
badge="Path A · Self-hosted"
2121
title="CrowdSec Security Engine"
2222
desc="Ingest blocklists with the open-source agent. Behavior detection, parsing pipeline, Local API — everything runs on your infra."
23-
href="/u/blocklists/security_engine"
24-
ctaLabel="Get started"
23+
links={[{ label: "Get started", href: "/u/blocklists/security_engine" }]}
2524
>
2625
<div style={{ display: "flex", flexDirection: "column", gap: 6, margin: "4px 0" }}>
2726
{[
@@ -43,8 +42,7 @@ New to CrowdSec blocklists? Read the [Introduction](/u/blocklists/intro) first t
4342
badge="Path B · No agent"
4443
title="Direct Integrations"
4544
desc="Push CrowdSec blocklists straight into your existing firewall, CDN, or WAF. No agent to install — just configure your subscription."
46-
href="/u/integrations/intro"
47-
ctaLabel="Browse integrations"
45+
links={[{ label: "Browse integrations", href: "/u/integrations/intro" }]}
4846
>
4947
<div style={{ display: "flex", flexDirection: "column", gap: 6, margin: "4px 0" }}>
5048
{[
@@ -63,10 +61,28 @@ New to CrowdSec blocklists? Read the [Introduction](/u/blocklists/intro) first t
6361

6462
## Quick comparison
6563

66-
| | Security Engine | Integrations |
67-
|---|---|---|
68-
| Setup time | ~ 10 min | ~ 2 min |
69-
| Runs on | Your infrastructure | Your existing firewall / CDN |
70-
| Behavior detection | Yes — full engine | No — blocklists only |
71-
| Best for | Servers, gateways, k8s | Edge, WAF, managed CDN |
72-
| Free community feed | Included | Included |
64+
export const pill = (color) => ({
65+
display: "inline-flex", alignItems: "center",
66+
fontFamily: "var(--cs-font-mono)", fontSize: 10.5, letterSpacing: "0.1em",
67+
textTransform: "uppercase", fontWeight: 600,
68+
padding: "2px 10px", borderRadius: 999,
69+
background: `color-mix(in srgb, ${color} 14%, transparent)`,
70+
color,
71+
});
72+
73+
<table>
74+
<thead>
75+
<tr>
76+
<th style={{ width: "30%" }}></th>
77+
<th><span style={pill("var(--cs-orange)")}>Security Engine</span></th>
78+
<th><span style={pill("var(--cs-teal)")}>Integrations</span></th>
79+
</tr>
80+
</thead>
81+
<tbody>
82+
<tr><td>Setup time</td><td>~ 10 min</td><td>~ 2 min</td></tr>
83+
<tr><td>Runs on</td><td>Your infrastructure</td><td>Your existing firewall / CDN</td></tr>
84+
<tr><td>Behavior detection</td><td>Yes — full engine</td><td>No — blocklists only</td></tr>
85+
<tr><td>Best for</td><td>Servers, gateways, k8s</td><td>Edge, WAF, managed CDN</td></tr>
86+
<tr><td>Free community feed</td><td>Included</td><td>Included</td></tr>
87+
</tbody>
88+
</table>

0 commit comments

Comments
 (0)