diff --git a/content/download/index.md b/content/download/index.md
index 596cb01..a78ba99 100644
--- a/content/download/index.md
+++ b/content/download/index.md
@@ -1,7 +1,7 @@
---
title: "Download now"
description: "Mycelium is a decentralized networking and storage solution designed to integrate seamlessly with AI workloads, content delivery, and messaging."
-template: "layouts/download.html"
+template: "page.html"
insert_anchor_links: "left"
extra:
@@ -9,16 +9,130 @@ extra:
imgPath: mycel2.png
---
+{{ left_header(
+ subtitle="",
+ subtitle_2="Nature's Blueprint for Digital Connectivity",
+ title="Download Mycelium",
+ description="Get Mycelium for Android, Windows, macOS, and iOS to securely connect, store, and interact with the decentralized network—seamlessly and efficiently.",
+ description3="Not sure how it works?",
+ button_link="https://threefold.info/mycelium/docs/",
+ button_text="Read the manual."
+) }}
-
+
+
+
+{{ left_header(
+ subtitle="",
+ title="Frequently Asked Questions",
+ description="",
+ description2=""
+) }}
+
+
+
+{{ accordion(
+ question="What is Mycelium?",
+ description="Mycelium is an end-to-end encrypted IPv6 overlay network written in Rust. Each node joining the network receives an IP in the 400::/7 range, facilitating secure and private communications."
+) }}
+
+{{ accordion(
+ question="Is mycelium ready to scale to the world?",
+ description="No, Mycelium is not yet fully scalable to a global level. Currently, each network can support around 100,000 users, but multiple networks can be deployed to expand capacity. We anticipate resolving these scalability challenges by 2025."
+) }}
+
+{{ accordion(
+ question="How do I install Mycelium?",
+ description="The Mycelium app supports iOS, macOS, Android and Windows. For Linux, a binary is available. Installation guides are available for both local machines and virtual machines running on the TFGrid. Note that Windows users need to have wintun.dll in the same directory as the Mycelium executable. Click here for more info."
+) }}
+
+{{ accordion(
+ question="How can I find and use my Mycelium address?",
+ description="Upon using the Mycelium app, you're assigned a unique Mycelium address. To copy this address, click the button located to the right of the displayed address in the app interface."
+) }}
+
+{{ accordion(
+ question="Can I deploy workloads on the TFGrid using Mycelium?",
+ description="Yes, after installing Mycelium, you can deploy workloads on the TFGrid and connect to them using the Mycelium network. Detailed deployment guides are available in the documentation."
+) }}
+
+{{ accordion(
+ question="Is there an API available for Mycelium?",
+ description="Yes, Mycelium offers an API for administrative operations, peer management, and message subsystem operations. Comprehensive API documentation can be found in the official Mycelium GitHub repository"
+ )
+ }}
+
+{{ accordion(
+ question="What should I do if I encounter issues during installation or usage?",
+ description="If you face any challenges, refer to the troubleshooting section in the Mycelium documentation. Additionally, ensure that all prerequisites are met, such as having wintun.dll in the correct directory for Windows installations."
+ )
+ }}
+
+{{ accordion(
+ question="How does Mycelium handle routing within its network?",
+ description="Mycelium incorporates core principles of the Babel routing protocol, enabling efficient and dynamic routing within its encrypted IPv6 overlay network."
+ )
+ }}
+
+
+
+
+
+
+{{ cta(
+ image_src="/images/mycel3.png",
+ image_alt="App screenshot",
+ title="Get Mycelium Today",
+ description="Join the Mycelium network and be a part of the decentralized movement.",
+ button_text="Download Now",
+ button_link="/download",
+ button_text2="Read More",
+ button_link2="https://threefold.info/mycelium/docs/"
+) }}
diff --git a/templates/shortcodes/feature_card.html b/templates/shortcodes/feature_card.html
index e189b47..a168e9c 100644
--- a/templates/shortcodes/feature_card.html
+++ b/templates/shortcodes/feature_card.html
@@ -6,15 +6,15 @@
{% set hover_color = hover_color | default(value="hover:bg-gray-50") %}
-
+
{% if icon %}
-
+
{% endif %}
-
{{ title }}
+
{{ title }}
{% if description %}
-
+
{{ description }}
{% endif %}
{% if link %}
{{ link_name }} →
diff --git a/templates/shortcodes/left_header.html b/templates/shortcodes/left_header.html
index e5fdcbf..70daed9 100644
--- a/templates/shortcodes/left_header.html
+++ b/templates/shortcodes/left_header.html
@@ -1,72 +1,28 @@
+{% set title = title | default(value="MYCELIUM") %}
+{% set subtitle = subtitle | default(value="") %}
+{% set subtitle_2 = subtitle_2 | default(value="") %}
+{% set description = description | default(value="") %}
+{% set description2 = description2 | default(value="") %}
+{% set description3 = description3 | default(value="") %}
+{% set button_text = button_text | default(value="") %}
+{% set button_link = button_link | default(value="") %}
+
{{ subtitle }}
-
{{ title }}
-
-
{{ description }}
+
{{ title }}
+
{{ subtitle_2 }}
+
{{ description }}
+ {% if description2 %}
{{ description2 }}
+ {% endif %}
+
+ {% if description3 %}
+
+ {{ description3 }} {{ button_text }}
+
+ {% endif %}
-