Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node Ops Update and Reorganization: Merging Full and Validator Node Guides, Style Enhancements, and Content Refinement #153

Merged
merged 5 commits into from
Nov 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions components/QuickStart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const QuickStartArea = () => {
description: `Start your journey on Tangle Network. This guide will walk you through the steps to become a validator, ensuring network security and integrity.`,
name: "Validate on Tangle Network",
}}
href="/docs/tangle-network/validator/quickstart/"
href="/docs/tangle-network/node/quickstart/"
></DetailedFeatureLink>
<DetailedFeatureLink
feature={{
Expand All @@ -31,7 +31,7 @@ export const QuickStartArea = () => {
<DetailedFeatureLink
feature={{
Icon: DiscordIcon,
description: `Interested in the latest announcements? Join our Discord server. `,
description: `Interested in the latest announcements? Join our Discord server.`,
name: "Join our Discord community.",
}}
href="https://discord.com/invite/cv8EfJu3Tn"
Expand Down Expand Up @@ -81,7 +81,7 @@ export const DeployArea = () => {
description: `Want to spin up a full node on the Tangle Network? We've made it easier than ever!`,
name: "Deploy a Tangle Node!",
}}
href="/docs/tangle-network/getting-started/deploy-using-hardhat/"
href="/docs/tangle-network/node/docker-node"
></DetailedFeatureLink>
<DetailedFeatureLink
feature={{
Expand Down Expand Up @@ -112,7 +112,7 @@ export const DappsArea = () => {
description: `Our easy-to-use testnet faucet allows you to claim test tokens with just a few clicks. Start experimenting with Hubble Bridge today.`,
name: "Faucet dApp",
}}
href="https://stats.tangle.tools"
href="https://faucet.tangle.tools"
/>
<DetailedFeatureLink
feature={{
Expand Down
32 changes: 24 additions & 8 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,8 @@ code {

.webbCardBg {
background: #fff;
box-shadow:
0px 0px 0px 1px rgba(0, 0, 0, 0.03),
0px 2px 4px rgba(0, 0, 0, 0.05),
0px 12px 24px rgba(0, 0, 0, 0.05);
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03),
0px 2px 4px rgba(0, 0, 0, 0.05), 0px 12px 24px rgba(0, 0, 0, 0.05);
}

.dark .webbCardBg {
Expand All @@ -81,10 +79,8 @@ code {

.webbCardBg {
background: #fff;
box-shadow:
0px 0px 0px 1px rgba(0, 0, 0, 0.03),
0px 2px 4px rgba(0, 0, 0, 0.05),
0px 12px 24px rgba(0, 0, 0, 0.05);
box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.03),
0px 2px 4px rgba(0, 0, 0, 0.05), 0px 12px 24px rgba(0, 0, 0, 0.05);
}

.dark .webbCardBg {
Expand All @@ -100,3 +96,23 @@ code {
outline: none !important;
box-shadow: none !important;
}

div[role="tabpanel"] {
background-color: #f1f5fb;
padding: 33px 33px 23px 33px;
border: 1px solid #9696ff;
}

[role="tab"][aria-selected="true"] {
background-color: #5858fd;
color: white;
font-weight: 700;
}

[role="tab"][aria-selected="false"] {
background-color: #fcfdff;
border-top: 1px solid #a8a8ff;
border-left: 1px solid #a8a8ff;
border-right: 1px solid #a8a8ff;
color: #3333c9;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Deploying with Docker
description: An overview of Webb Tangle node and Webb Relayer deployment process.
---

import Callout from "../../../../../components/Callout";
import Callout from "../../../../components/Callout";

# Deploying Tangle Validator and Relayer

Expand Down
7 changes: 4 additions & 3 deletions pages/docs/tangle-network/node/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"quickstart": "Quickstart",
"hardware": "Hardware",
"node-software": "Tangle Software",
"deploy-with-docker": "Deploying with Docker",
"systemd": "Running with Systemd",
"systemd": "Deploy with systemd",
"docker-node": "Deploy with Docker",
"monitoring": "Node Monitoring",
"validator": "Validate",
"flags": "Flags",
"troubleshooting": "Troubleshooting"
"troubleshooting": "Troubleshooting",
"quicknode": "Launch a Quick Node"
}
5 changes: 0 additions & 5 deletions pages/docs/tangle-network/node/deploy-with-docker/_meta.json

This file was deleted.

131 changes: 0 additions & 131 deletions pages/docs/tangle-network/node/deploy-with-docker/full-node.mdx

This file was deleted.

Loading