Skip to content

Commit 0079587

Browse files
NathanFlurryjog1t
andauthored
chore: add deploy options on overview page (#3176)
* chore(site): add page badges * fix(site): code groups and content styles * chore: add deploy options on overview page --------- Co-authored-by: Kacper Wojciechowski <[email protected]>
1 parent 06ac459 commit 0079587

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

site/src/content/docs/index.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { integrationGroups } from "@/data/integrations/shared";
2+
import { deployOptions } from "@/data/deploy-options";
23
import {
34
faNodeJs,
45
faReact,
@@ -59,6 +60,20 @@ Rivet is a library for long-lived processes with durable state, realtime, and sc
5960
</Card>
6061
</CardGroup>
6162

63+
## Deploy Options
64+
65+
<CardGroup>
66+
{deployOptions.map((option) => (
67+
<Card
68+
key={option.href}
69+
title={option.title}
70+
href={option.href}
71+
icon={option.icon}
72+
badge={option.badge}
73+
/>
74+
))}
75+
</CardGroup>
76+
6277
## Integrations
6378

6479
{integrationGroups.map((group) => (

0 commit comments

Comments
 (0)