Skip to content

Commit 1926272

Browse files
Add status page to docs (#4329)
* Add status * remove space * fix link Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent 6ae3a23 commit 1926272

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

frontend/website/pages/docs/my-first-transaction.mdx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ In this section, we'll make our first transaction on the Coda network. After [in
77

88
## Start up a node
99

10+
<Alert kind="status">
11+
12+
You can find the current status of the network and related services here: [status.codaprotocol.com](https://status.codaprotocol.com)
13+
14+
</Alert>
15+
1016
Run the following command to start up a Coda node instance and connect to the network:
1117

1218
coda daemon \

frontend/website/src/components/Alert.re

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ let make = (~kind="", ~children) => {
3232
| "warning" => ("warning", Theme.Colors.rosebudAlpha(0.8))
3333
| "danger" => ("danger", Theme.Colors.rosebudAlpha(0.8))
3434
| "welcome" => ("welcome", Theme.Colors.tealBlueAlpha(0.8))
35+
| "status" => ("status", Theme.Colors.indiaAlpha(0.8))
3536
| _ => ("note", Theme.Colors.marineAlpha(0.8))
3637
};
3738
<div className={Style.main(color)}>

0 commit comments

Comments
 (0)