Skip to content

Commit

Permalink
Updated copy
Browse files Browse the repository at this point in the history
  • Loading branch information
larkiny committed Jan 8, 2025
1 parent 024ea55 commit 30e5f41
Show file tree
Hide file tree
Showing 8 changed files with 39 additions and 36 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/src/content/docs/guides/10-getting-started.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Getting Started
title: Getting Started with nodekit
description: Installing nodekit
---

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/guides/20-bootstrap.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Installing and bootstrapping the Algorand node
title: Installing the Algorand node
description: Installing and bootstrapping the Algorand node
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Navigating accounts and keys in Nodekit
title: Navigating accounts and keys
description: Navigating accounts and keys in Nodekit
---

Expand Down Expand Up @@ -28,4 +28,3 @@ Press `ENTER` to view the key information.
From this screen, you can press `ESC` to return back to they keys list, `D` to delete a participation key, or `R` to register your key online or offline.

![](/assets/nodekit-navigate-keys.gif)

6 changes: 3 additions & 3 deletions docs/src/content/docs/troubleshooting/10-getting-started.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Troubleshooting: Getting Started"
title: "Getting Started"
description: Troubleshooting nodekit installation
---

Expand All @@ -11,9 +11,9 @@ This section outlines **common errors encountered** when executing the nodekit i

### A nodekit file already exists in the current directory.

If you run the installer command more than once, you will see:
If you run the installer command more than once, you will see:

> ERROR: An nodekit file already exists in the current directory. Delete or rename it before installing.
> ERROR: A nodekit file already exists in the current directory. Delete or rename it before installing.
If you want to fetch the latest version of nodekit, you can delete the existing file:

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/troubleshooting/20-bootstrap.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Troubleshooting: Installing and bootstrapping the Algorand node"
title: "Installation/Bootstrapping"
description: Troubleshooting nodekit bootstrap
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Troubleshooting: Generating participation keys"
title: "Participation key generation"
description: Troubleshooting participation key generation with Nodekit
---

Expand All @@ -21,12 +21,10 @@ You can:

![](/assets/nodekit-error-keygen-failed.png)


### Participation key generation already in progress

This error means that there is a participation key already being generated on the Algorand node.

You can wait a few minutes, and the key will automatically appear in the Accounts list when it is ready.

![](/assets/nodekit-error-keygen-already.png)

56 changes: 31 additions & 25 deletions docs/src/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,36 @@ https://tailwindcss.com/docs/adding-custom-styles#using-css-and-layer
*/
/* Dark mode colors. */
:root {
--sl-color-accent-low: #131e4f;
--sl-color-accent: #3646ff;
--sl-color-accent-high: #b3c7ff;
--sl-color-white: #ffffff;
--sl-color-gray-1: #e4eff9;
--sl-color-gray-2: #b6c4d0;
--sl-color-gray-3: #758fa6;
--sl-color-gray-4: #435b70;
--sl-color-gray-5: #233b4e;
--sl-color-gray-6: #192A39;
--sl-color-black: #0f1922;
--sl-color-accent-low: #131e4f;
--sl-color-accent: #3646ff;
--sl-color-accent-high: #b3c7ff;
--sl-color-white: #ffffff;
--sl-color-gray-1: #e4eff9;
--sl-color-gray-2: #b6c4d0;
--sl-color-gray-3: #758fa6;
--sl-color-gray-4: #435b70;
--sl-color-gray-5: #233b4e;
--sl-color-gray-6: #192a39;
--sl-color-black: #0f1922;
}
/* Light mode colors. */
:root[data-theme='light'] {
--sl-color-accent-low: #c7d6ff;
--sl-color-accent: #384bff;
--sl-color-accent-high: #192676;
--sl-color-white: #0f1922;
--sl-color-gray-1: #12293b;
--sl-color-gray-2: #233b4e;
--sl-color-gray-3: #435b70;
--sl-color-gray-4: #758fa6;
--sl-color-gray-5: #b6c4d0;
--sl-color-gray-6: #e4eff9;
--sl-color-gray-7: #f1f7fc;
--sl-color-black: #ffffff;
}
:root[data-theme="light"] {
--sl-color-accent-low: #c7d6ff;
--sl-color-accent: #384bff;
--sl-color-accent-high: #192676;
--sl-color-white: #0f1922;
--sl-color-gray-1: #12293b;
--sl-color-gray-2: #233b4e;
--sl-color-gray-3: #435b70;
--sl-color-gray-4: #758fa6;
--sl-color-gray-5: #b6c4d0;
--sl-color-gray-6: #e4eff9;
--sl-color-gray-7: #f1f7fc;
--sl-color-black: #ffffff;
}

pre,
code {
padding: 0.2rem 0.4rem;
border-radius: 0.2rem;
}

0 comments on commit 30e5f41

Please sign in to comment.