From 5e20eb96ec00105167f0e1406f3a2c58a2df731b Mon Sep 17 00:00:00 2001 From: ehab-hassan Date: Tue, 20 May 2025 17:09:57 +0300 Subject: [PATCH] update about2 --- content/about.md | 59 +++++++++++++++++++ templates/base.html | 2 +- templates/shortcodes/cta.html | 10 ++-- .../shortcodes/desciption_blockquote.html | 59 +++++++++++++++++++ templates/shortcodes/hero_right_img.html | 2 +- templates/shortcodes/text_left_img.html | 42 +++++++++++++ templates/shortcodes/text_right_img.html | 13 ++-- 7 files changed, 175 insertions(+), 12 deletions(-) create mode 100644 templates/shortcodes/desciption_blockquote.html create mode 100644 templates/shortcodes/text_left_img.html diff --git a/content/about.md b/content/about.md index 6c11505..c8f37a4 100644 --- a/content/about.md +++ b/content/about.md @@ -16,9 +16,37 @@ date = 2025-03-22 description_2="We aim to build a system that adapts to our growing digital needs while promoting sustainability and security." ) }} + + +{{ desciption_blockquote( + title="Our Technology", + description_1="Mycelium enables secure, efficient, and scalable data transfer between network nodes by optimizing data routing. It ensures that information takes the shortest path with the lowest latency, resulting in faster and more efficient communication.", + description_2="The technology relies on end-to-end encryption, with each node uniquely identified by its own key pair, guaranteeing the security and privacy of data. This approach ensures that data remains confidential and authentic, strengthening the overall privacy and integrity of the network.", + description_3="Mycelium was created to overcome the limitations of traditional networking protocols while promoting a more sustainable and eco-friendly digital ecosystem. Its goal is to transform digital communication, making it not only efficient and secure but also environmentally responsible.", + description_4="The inspiration behind Mycelium comes from the need for a technology that can adapt to changing network conditions and continue to operate efficiently in a rapidly evolving digital landscape." + + +) }} + + +{{ text_left_img( + image_src="/images/efficient.jpeg", + image_alt="Discover Mycelium", + title="Highly Efficient", + subheader="BENEFITS", + subtitle="Optimizing Data Routing", + description="Mycelium's routing algorithms prioritize minimizing latency in data transfer. This ensures that data takes the most direct and efficient route, reducing the time it takes to travel from the source node to the destination node.", + description_2="", + button_text="", + button_link="" +) }} + + + + {{ text_right_img( image_src="/images/security.jpeg", image_alt="Discover Mycelium", @@ -31,6 +59,37 @@ date = 2025-03-22 button_link="" ) }} + + +{{ text_left_img( + image_src="/images/scalability.jpeg", + image_alt="Discover Mycelium", + title="Enhances Scalability", + subheader="BENEFITS", + subtitle="Designed to Adapt", + description="Mycelium is an open-source project built to adapt dynamically to changing network conditions. As new nodes join or existing nodes leave, the system adjusts seamlessly, allowing Mycelium to scale and support more participants without sacrificing performance.", + description_2="The system is designed to efficiently distribute network traffic. During periods of high demand or increased data transfer, Mycelium balances the load by routing data through multiple paths or nodes. This ensures the network can handle greater traffic and more users without becoming overloaded.", + button_text="", + button_link="" +) }} + + + + + + +{{ 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/base.html b/templates/base.html index bc5b1cf..55a95ee 100644 --- a/templates/base.html +++ b/templates/base.html @@ -18,7 +18,7 @@
-
+
{% block content %}{% endblock %}
diff --git a/templates/shortcodes/cta.html b/templates/shortcodes/cta.html index f53e4c9..09a591f 100644 --- a/templates/shortcodes/cta.html +++ b/templates/shortcodes/cta.html @@ -8,19 +8,21 @@ {% set image_alt = image_alt | default(value="") %}
-
+

{{ title }}

{{ description }}

-
- {{ image_alt }} + +
+ {{ image_alt }}
+ diff --git a/templates/shortcodes/desciption_blockquote.html b/templates/shortcodes/desciption_blockquote.html new file mode 100644 index 0000000..48ac867 --- /dev/null +++ b/templates/shortcodes/desciption_blockquote.html @@ -0,0 +1,59 @@ +{% set title = title | default(value="") %} +{% set description_1 = description_1 | default(value="") %} +{% set description_2 = description_2 | default(value="") %} +{% set description_3 = description_3 | default(value="") %} +{% set description_4 = description_4 | default(value="") %} + + + +
+
+
+

{{ title }} +

+
+
+ +
+
+

+ {{ description_1 }} +

+ {{ description_2 }} +

+

+
+
+ + +
+
+
+

{{ description_3 }} +

+ {{ description_4 }}

+
+
+
+

+ Decentralized. Scalable. Intelligent. +

+
+
+
+
+
+
+ + + + diff --git a/templates/shortcodes/hero_right_img.html b/templates/shortcodes/hero_right_img.html index 06531e9..e47b687 100644 --- a/templates/shortcodes/hero_right_img.html +++ b/templates/shortcodes/hero_right_img.html @@ -7,7 +7,7 @@
-
+
{{ image_alt }} diff --git a/templates/shortcodes/text_left_img.html b/templates/shortcodes/text_left_img.html new file mode 100644 index 0000000..09fab35 --- /dev/null +++ b/templates/shortcodes/text_left_img.html @@ -0,0 +1,42 @@ +{% set title = title | default(value="") %} +{% set subheader = subheader | default(value="") %} +{% set subtitle = subtitle | default(value="") %} +{% set description = description | default(value="") %} +{% set description_2 = description_2 | default(value="") %} +{% set button_text = button_text | default(value="") %} +{% set button_link = button_link | default(value="") %} +{% set image_src = image_src | default(value="") %} +{% set image_alt = image_alt | default(value="") %} + +
+
+
+
+ {{ image_alt }} +
+
+

{{ subheader }}

+

{{ title }}

+

+ {{ subtitle }} +

+

+ {{ description }} +

+

+ {{ description_2 }} +

+ {% if button_link %} + + {% endif %} + +
+ + +
+
+
+ diff --git a/templates/shortcodes/text_right_img.html b/templates/shortcodes/text_right_img.html index 181e1ba..3ae6a1a 100644 --- a/templates/shortcodes/text_right_img.html +++ b/templates/shortcodes/text_right_img.html @@ -8,12 +8,16 @@ {% set image_src = image_src | default(value="") %} {% set image_alt = image_alt | default(value="") %} -
+
+
+ {{ image_alt }} +
-

{{ subheader }}

+

{{ subheader }}

{{ title }}

{{ subtitle }} @@ -31,10 +35,7 @@ {% endif %}

-
- {{ image_alt }} -
+