From e79c4dbb9e86dc0ff6f8ca7ef4cf5168efff41a8 Mon Sep 17 00:00:00 2001 From: Foster Irwin Date: Wed, 2 Mar 2022 11:10:10 -0700 Subject: [PATCH] added call to action buttons --- docs/getting-started/getting_started.md | 19 +++++++++++++++++++ src/css/custom.css | 5 +++++ 2 files changed, 24 insertions(+) diff --git a/docs/getting-started/getting_started.md b/docs/getting-started/getting_started.md index ec79f43e..ef8c86e0 100644 --- a/docs/getting-started/getting_started.md +++ b/docs/getting-started/getting_started.md @@ -4,6 +4,7 @@ title: Getting Started sidebar_label: Getting Started slug: /getting-started --- +import Link from '@docusaurus/Link'; ## What is Meshtastic? @@ -13,10 +14,23 @@ The radios automatically create a mesh to forward packets as needed, so everyone Meshtastic uses LoRa for the long range communications and depending on settings used, the maximum theoretical group size ranges from 30-200 device nodes. Currently, each device can only support a connection from a single user at a time. + + Learn More + + ## Purchase a Radio The easiest way is to [buy a device with the software already installed](https://www.aliexpress.com/item/4001178678568.html). Other devices are [available](/docs/hardware/supported/tbeam). In the Americas get the 915MHz version, in Europe the 868MHz, or Asia 923MHz. See this listing by [The Things Network](https://www.thethingsnetwork.org/docs/lorawan/frequencies-by-country.html) for frequencies by specific countries. + + Purchase Hardware + + + ## Setup the Radio When it arrives, install your antenna and make sure you install the battery correctly. Reversing the battery can damage your device. Make sure the antenna is on when you power up the board. @@ -37,6 +51,11 @@ If your device already has Meshtastic flashed to it, you can update it over the The manual firmware installation method will also depend on whether you have an ESP32 based device or a nRF52 based device. See our [hardware section](/docs/hardware) to determine which microcontroller your device is based on. + + Flash Firmware + ## Connect to your Device diff --git a/src/css/custom.css b/src/css/custom.css index b42adbc1..b75adccd 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -50,3 +50,8 @@ html[data-theme="dark"] .header-github-link:before { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } } + +.cta--button { + --ifm-button-border-color: var(--ifm-link-color); + color: var(--ifm-link-color); +}