Skip to content

Commit 760c586

Browse files
authored
[docs] Add intro text to Ecosystem sections (#6201)
Signed-off-by: Charlie Egan <[email protected]>
1 parent 0431567 commit 760c586

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

docs/website/content/ecosystem/_index.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,20 @@ kind: support
44
categories:
55
- key: rego
66
title: Rego Language
7+
description: |
8+
Rego is the policy language used by OPA and there are various integrations that make working with the language easier.
79
- key: production
810
title: OPA at Scale
11+
description: |
12+
OPA has a number of features that are most useful when running OPA in production. These integrations make use of those features, and make it easier to use OPA at scale.
913
- key: tool
1014
title: Tool Integrations
11-
- key: language
12-
title: Language Integrations
13-
- key: builtwithopa
14-
title: Built with OPA
15+
description: |
16+
OPA plays nice with a range of existing tools too via some bespoke integrations.
17+
- key: createwithopa
18+
title: Create with OPA
19+
description: |
20+
OPA's SDKs and APIs offer a solid foundation for all kinds of projects. See the integrations below for inspiration.
1521
intro: |
1622
Showcase of OPA integrations, use-cases, and related projects.
1723
---
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Go Integrations
33
description: Projects using OPA as a Go module
4-
category: builtwithopa
4+
category: createwithopa
55
---
66

77
Projects using OPA as a Go module to implement policy-based functionality.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: REST API Integrations
33
description: Examples of projects which integrate with the OPA REST API.
4-
category: builtwithopa
4+
category: createwithopa
55
---
66

77
OPA’s [REST API](../../rest-api) is the foundation for many integrations. Public examples are listed below.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Wasm Integrations
33
description: Projects using the Wasm functionality of OPA.
4-
category: language
4+
category: createwithopa
55
---
66

77
OPA’s [Wasm Functionality](../../wasm) has been used to build the following projects.

docs/website/layouts/ecosystem/section.html.html

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ <h2>{{ $category.title }}</h2>
2828
<div class="card-body">
2929
<div class="card-text">
3030
<div>
31+
<p class="mb-4">{{ $category.description }}</p>
3132
<ul>
3233
{{ range $page := where $.Pages "Section" "ecosystem" }}
3334
{{ if eq $page.Params.category $category.key }}

0 commit comments

Comments
 (0)