diff --git a/.github/workflows/update_dev2.yml b/.github/workflows/update_dev2.yml
new file mode 100644
index 000000000..fa19830bc
--- /dev/null
+++ b/.github/workflows/update_dev2.yml
@@ -0,0 +1,46 @@
+name: www3.threefold_io
+on:
+ push:
+ branches: [ development_sasha ]
+
+jobs:
+ deploy:
+ name: Deploy
+ runs-on: ubuntu-latest
+ steps:
+ - name: pushing latest change on www3.threefold.io
+ uses: appleboy/ssh-action@master
+ with:
+ host: www3.threefold.io
+ username: webuser
+ key: ${{ secrets.TF_SECRET }}
+ port: 34022
+ script: |
+ cd websites/tmp/www_threefold_io/
+ git log -1
+ git restore .
+ git pull
+ sed -i "s/https:\/\/dev.threefold.io/https:\/\/dev2.threefold.io/g" config.toml
+ bash build.sh
+
+ wait:
+ needs: deploy
+ name: Wait for Website Update
+ runs-on: ubuntu-latest
+ steps:
+ - name: Wait Period
+ id: wait-deploy
+ run: |
+ echo "Sleeping for 30"
+ sleep 30
+
+ checklinks:
+ needs: wait
+ name: Check for Broken Links
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check for Broken Links
+ id: link-report
+ uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest
+ with:
+ args: 'https://www3.threefold.io -w 404'
diff --git a/_archive/team.html b/_archive/team.html
new file mode 100644
index 000000000..b2bc4d05f
--- /dev/null
+++ b/_archive/team.html
@@ -0,0 +1,69 @@
+
+
+
+
+
The Team Behind ThreeFold
+
Founded by Internet Pioneers 1.0
+
We are a dedicated group committed to advancing a new digital era. Some of us have been working on Internet technology since the early days, when it was a decentralized network. We aim to help bring that vision to life once more. Beyond those below, we have more than 50 engineers, developers, and other team members supporting the project.
+
+
+
+
+
+
+
+

+
+
+ Kristof de Spiegeleer
+
+
Co-founder & CEO
+
+ Serial entrepreneur with 30 years of experience in Internet infrastructure and cloud technology. Passionate about tech for good. +600m $ exits.
+
+
+
+
+
+

+
+
+ Adnan Fatayerji
+
+
Co-founder
+
+ Tech entrepreneur with multiple exits. Based in Dubai for 20 years. Head of Partnerships and Business Development..
+
+
+
+
+
+

+
+
+ Jan De Landtsheer
+
+
Co-founder & CTO
+
+ Engineer with 40+ years of experience in deep tech, networking, cloud and storage.
+
+
+
+
+
+

+
+
+ Florian Fournier
+
+
Co-founder & CMO
+
+ Ex Apple marketing director, serial entrepreneur living between Africa and Latin America.
+
+
+
+
+
+
diff --git a/build.sh b/build.sh
index d4e42ff48..8f7469227 100755
--- a/build.sh
+++ b/build.sh
@@ -1,32 +1,34 @@
echo "Starting build..."
+SOURCE=${BASH_SOURCE[0]}
+DIR_OF_THIS_SCRIPT="$( dirname "$SOURCE" )"
+ABS_DIR_OF_SCRIPT="$( realpath $DIR_OF_THIS_SCRIPT )"
+
# TODO: Check if current version is latest to avoid redundant installation
if [[ -f "tailwindcss" ]]
then
- echo "Tailwind installed"
-else
- # rm tailwindcss
- # checks os and architecture for correct release
- # https://stackoverflow.com/a/8597411
- echo "Installing & building tailwind..."
- ASSET="tailwindcss"
-
- if [[ "$OSTYPE" == "linux-gnu"* ]]; then
- ASSET="$ASSET-linux"
- elif [[ "$OSTYPE" == "darwin"* ]]; then
- ASSET="$ASSET-macos"
- fi
- if [[ "$(uname -m)" == "x86_64"* ]]; then
- ASSET="$ASSET-x64"
- elif [[ "$(uname -m)" == "arm64"* ]]; then
- ASSET="$ASSET-arm64"
- fi
-
- curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}"
- chmod +x $ASSET
- mv $ASSET tailwindcss
+ rm tailwindcss
fi
+# checks os and architecture for correct release
+# https://stackoverflow.com/a/8597411
+echo "Installing & building tailwind..."
+ASSET="tailwindcss"
+
+if [[ "$OSTYPE" == "linux-gnu"* ]]; then
+ ASSET="$ASSET-linux"
+elif [[ "$OSTYPE" == "darwin"* ]]; then
+ ASSET="$ASSET-macos"
+fi
+if [[ "$(uname -m)" == "x86_64"* ]]; then
+ ASSET="$ASSET-x64"
+elif [[ "$(uname -m)" == "arm64"* ]]; then
+ ASSET="$ASSET-arm64"
+fi
+
+curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}"
+chmod +x $ASSET
+mv $ASSET tailwindcss
# initialized and configures tailwind if not configured
@@ -41,6 +43,4 @@ fi
echo "Compiling tailwindcss and building zola project..."
rm -rf public static/css
./tailwindcss -i css/index.css -o ./static/css/index.css --minify
-zola build
-
-
+zola --root $ABS_DIR_OF_SCRIPT build
\ No newline at end of file
diff --git a/config.toml b/config.toml
index 175403f39..05ac2c06f 100644
--- a/config.toml
+++ b/config.toml
@@ -86,13 +86,13 @@ paginate_path = "tags"
[[taxonomies]]
name = "people"
-feed = true
+feed = false
paginate_by = 9
paginate_path = "people"
[[taxonomies]]
name = "memberships"
-feed = true
+feed = false
paginate_by = 8
paginate_path = "people/memberships"
diff --git a/content/_index.md b/content/_index.md
index 83a68cd5c..6ff91ecf5 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -1,12 +1,12 @@
---
-title: "Home"
-description: "ThreeFold empowers anyone to become a cloud service provider – no technical expertise required – allowing people and organizations to buy sell, and use cloud resources autonomously and securely." # quotation marks to allow colons where used
+title: "ThreeFold"
+description: "TF offers a secure, sovereign infrastructure layer for Web4, delivering unparalleled scalability, incorruptible and permanent data storage, AI and Web2/Web3/Edge compatibility, and 100% uptime for a resilient digital future." # quotation marks to allow colons where used
date: 2018-09-14T21:00:00-05:00
updated: 2021-02-20T14:40:00-06:00
draft: false
extra:
- author: Your name here
- imgPath: home/autonomous.png
+ author: ThreeFold
+ imgPath: home/tf.png
---
@@ -17,7 +17,7 @@ extra:
-
+
diff --git a/content/about/about_journey2.png b/content/about/about_journey2.png
deleted file mode 100644
index 03199c20a..000000000
Binary files a/content/about/about_journey2.png and /dev/null differ
diff --git a/content/about/adnan_fatayerji.jpg b/content/about/adnan_fatayerji.jpg
deleted file mode 100644
index bb247b819..000000000
Binary files a/content/about/adnan_fatayerji.jpg and /dev/null differ
diff --git a/content/about/alexandre_hannelas.jpeg b/content/about/alexandre_hannelas.jpeg
deleted file mode 100644
index ca4a30654..000000000
Binary files a/content/about/alexandre_hannelas.jpeg and /dev/null differ
diff --git a/content/about/florian_fournier.jpeg b/content/about/florian_fournier.jpeg
deleted file mode 100644
index a5cccdd3f..000000000
Binary files a/content/about/florian_fournier.jpeg and /dev/null differ
diff --git a/content/about/jan_de_landtsheer.jpeg b/content/about/jan_de_landtsheer.jpeg
deleted file mode 100644
index 11cfa66a8..000000000
Binary files a/content/about/jan_de_landtsheer.jpeg and /dev/null differ
diff --git a/content/about/kristof_de_spiegeleer.jpeg b/content/about/kristof_de_spiegeleer.jpeg
deleted file mode 100644
index 5e6c598f6..000000000
Binary files a/content/about/kristof_de_spiegeleer.jpeg and /dev/null differ
diff --git a/content/about/plus2.png b/content/about/plus2.png
deleted file mode 100644
index 52c957d91..000000000
Binary files a/content/about/plus2.png and /dev/null differ
diff --git a/content/about/sacha_obeegadoo.jpg b/content/about/sacha_obeegadoo.jpg
deleted file mode 100644
index fe84c6b42..000000000
Binary files a/content/about/sacha_obeegadoo.jpg and /dev/null differ
diff --git a/content/action/index.md b/content/action/index.md
new file mode 100644
index 000000000..54ecb803f
--- /dev/null
+++ b/content/action/index.md
@@ -0,0 +1,58 @@
+---
+title: "Take actions"
+description: "Take actions and become a part of a pioneering Web4 movement with ThreeFold on 12.12.2024" # quotation marks to allow colons where used
+template: "layouts/action.html"
+insert_anchor_links: "left"
+extra:
+ author: ThreeFold
+ imgPath: tf.png
+---
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/content/action/tf.png b/content/action/tf.png
new file mode 100644
index 000000000..0ccade5fd
Binary files /dev/null and b/content/action/tf.png differ
diff --git a/content/blog/_index.md b/content/blog/_index.md
index 7a3977df2..1fa4f4927 100644
--- a/content/blog/_index.md
+++ b/content/blog/_index.md
@@ -1,5 +1,5 @@
---
-title: "Blog"
+title: "ThreeFold Blog"
paginate_by: 9
description: "Dive in to read more of our stories, our past, our present, and our future. We envision a global, community-driven network of interconnected servers and nodes—the grid—that democratizes computing power and storage."
# paginate_reversed: false
@@ -14,5 +14,5 @@ page_template: "blogPage.html"
#transparent: true
generate_feed: true
extra:
- imgPath: blog.png
+ imgPath: tf.png
---
diff --git a/content/blog/africa_regen_summit_ii/africa_future_summit1.png b/content/blog/africa_regen_summit_ii/africa_future_summit1.png
new file mode 100644
index 000000000..60096f95e
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/africa_future_summit1.png differ
diff --git a/content/blog/africa_regen_summit_ii/index.md b/content/blog/africa_regen_summit_ii/index.md
index 0f659d6b3..cb5eae1a1 100644
--- a/content/blog/africa_regen_summit_ii/index.md
+++ b/content/blog/africa_regen_summit_ii/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, event, collaboration, why]
categories: [community, event, collaboration, why]
extra:
- imgPath: africa_regen_summit_ii.png
+ imgPath: africa_future_summit1.png
---
In 2023, we had the pleasure of hosting two summits in Zanzibar – one in July and another in [November](https://www.threefold.io/newsroom/africa-regen-ii/), named the Africa Regenerative Future Summit. These events brought together leading innovators and investors committed to advancing human flourishing, with a specific emphasis on science and technology shaping the trajectory of Africa's future.
diff --git a/content/blog/an_intro_to_the_threefold_grid/building_a_new_internet_1_1.png b/content/blog/an_intro_to_the_threefold_grid/building_a_new_internet_1_1.png
new file mode 100644
index 000000000..748caa863
Binary files /dev/null and b/content/blog/an_intro_to_the_threefold_grid/building_a_new_internet_1_1.png differ
diff --git a/content/blog/an_intro_to_the_threefold_grid/index.md b/content/blog/an_intro_to_the_threefold_grid/index.md
index 6ac4e0f50..2ac4023ae 100644
--- a/content/blog/an_intro_to_the_threefold_grid/index.md
+++ b/content/blog/an_intro_to_the_threefold_grid/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, cloud, tech]
categories: [grid, cloud, tech]
extra:
- imgPath: an_intro_to_the_threefold_grid.png
+ imgPath: building_a_new_internet_1_1.png
---
## An Intro to the ThreeFold Grid
diff --git a/content/blog/beyond_quick_fixes/beyond_quick_fixes1.png b/content/blog/beyond_quick_fixes/beyond_quick_fixes1.png
new file mode 100644
index 000000000..143841155
Binary files /dev/null and b/content/blog/beyond_quick_fixes/beyond_quick_fixes1.png differ
diff --git a/content/blog/beyond_quick_fixes/index.md b/content/blog/beyond_quick_fixes/index.md
index 117347601..6921da1ff 100644
--- a/content/blog/beyond_quick_fixes/index.md
+++ b/content/blog/beyond_quick_fixes/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid,community]
categories: [tech,grid,community]
extra:
- imgPath: beyond_quick_fixes.png
+ imgPath: beyond_quick_fixes1.png
---
The Internet is a crucial part of our daily lives, yet it faces many challenges. To name a few, about half of the global population doesn’t have fair or reliable access, data privacy, and cybersecurity threats are greater than ever before, and the current model is unsustainable for our planet. Despite advancements in technology, the Internet has been stuck in a cycle of quick fixes and patchwork solutions, unable to address these fundamental issues truly.
diff --git a/content/blog/building_a_new_internet_from_the_ground_up/building_a_new_internet_2_1.png b/content/blog/building_a_new_internet_from_the_ground_up/building_a_new_internet_2_1.png
new file mode 100644
index 000000000..b80db42c4
Binary files /dev/null and b/content/blog/building_a_new_internet_from_the_ground_up/building_a_new_internet_2_1.png differ
diff --git a/content/blog/building_a_new_internet_from_the_ground_up/index.md b/content/blog/building_a_new_internet_from_the_ground_up/index.md
index 55858728d..b7a19552a 100644
--- a/content/blog/building_a_new_internet_from_the_ground_up/index.md
+++ b/content/blog/building_a_new_internet_from_the_ground_up/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, cloud, tech]
categories: [grid, cloud, tech]
extra:
- imgPath: building_a_new_internet_2.png
+ imgPath: building_a_new_internet_2_1.png
---
Welcome back for the second part of this introductory series on ThreeFold Grid technology. [Last time](https://threefold.io/blog/an_intro_to_the_threefold_grid/) we took a high level view of all that the Grid offers. This time, we'll be zooming in on storage, covering the low level components and how they can provide a familiar experience like the cloud "drives" and "boxes" we use today.
diff --git a/content/blog/building_a_new_internet_from_the_ground_up_3/building_a_new_internet_3_1.png b/content/blog/building_a_new_internet_from_the_ground_up_3/building_a_new_internet_3_1.png
new file mode 100644
index 000000000..63f078f61
Binary files /dev/null and b/content/blog/building_a_new_internet_from_the_ground_up_3/building_a_new_internet_3_1.png differ
diff --git a/content/blog/building_a_new_internet_from_the_ground_up_3/index.md b/content/blog/building_a_new_internet_from_the_ground_up_3/index.md
index 52d579893..eac016c32 100644
--- a/content/blog/building_a_new_internet_from_the_ground_up_3/index.md
+++ b/content/blog/building_a_new_internet_from_the_ground_up_3/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, cloud, tech]
categories: [grid, cloud, tech]
extra:
- imgPath: building_a_new_internet_3.png
+ imgPath: building_a_new_internet_3_1.png
---
*Welcome back for another installment of our accessible series on ThreeFold Grid technology. We are working through the three major categories that make up cloud infrastructure: storage, compute, and network. This time, we'll be focusing on compute.*
diff --git a/content/blog/building_a_new_internet_from_the_ground_up_4/building_a_new_internet_4_1.png b/content/blog/building_a_new_internet_from_the_ground_up_4/building_a_new_internet_4_1.png
new file mode 100644
index 000000000..e17468291
Binary files /dev/null and b/content/blog/building_a_new_internet_from_the_ground_up_4/building_a_new_internet_4_1.png differ
diff --git a/content/blog/building_a_new_internet_from_the_ground_up_4/index.md b/content/blog/building_a_new_internet_from_the_ground_up_4/index.md
index 68ce04a7d..2e832152d 100644
--- a/content/blog/building_a_new_internet_from_the_ground_up_4/index.md
+++ b/content/blog/building_a_new_internet_from_the_ground_up_4/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
- imgPath: building_a_new_internet_pt_4.png
+ imgPath: building_a_new_internet_4_1.png
---
After introducing the ThreeFold Grid in [part one](https://threefold.io/blog/an_intro_to_the_threefold_grid/) and diving deep into [storage](https://threefold.io/blog/building_a_new_internet_from_the_ground_up_pt2/) and [compute](https://threefold.io/blog/building_a_new_internet_from_the_ground_up_3/), we’re back with part 4 to look at the networking aspects of the ThreeFold Grid.
diff --git a/content/blog/cloud_provider/cloud_internet_provider1.png b/content/blog/cloud_provider/cloud_internet_provider1.png
new file mode 100644
index 000000000..282f302f1
Binary files /dev/null and b/content/blog/cloud_provider/cloud_internet_provider1.png differ
diff --git a/content/blog/cloud_provider/index.md b/content/blog/cloud_provider/index.md
index 4200d6e37..33abcbf22 100644
--- a/content/blog/cloud_provider/index.md
+++ b/content/blog/cloud_provider/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, tech]
categories: [grid, tech]
extra:
- imgPath: cloud_provider.png
+ imgPath: cloud_internet_provider1.png
---
Cloud and Internet service providers form the backbone of our digital experiences. They host data and applications, and facilitate connectivity. Major corporations have long dominated this space. When the Internet started to become mainstream, it was necessary to scale the infrastructure quickly to meet growing demand. Thus, with their vast amounts of resources, big companies were the ones to build this infrastructure and offer services on top.
diff --git a/content/blog/data_leaks/index.md b/content/blog/data_leaks/index.md
index a3b897996..6bf745f2a 100644
--- a/content/blog/data_leaks/index.md
+++ b/content/blog/data_leaks/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
- imgPath: data_leaks.png
+ imgPath: stand_up_for_our_data.png
---
Do a quick search for "data leak" on your search engine of choice, and you'll likely see headlines like this:
diff --git a/content/blog/data_leaks/stand_up_for_our_data.png b/content/blog/data_leaks/stand_up_for_our_data.png
new file mode 100644
index 000000000..4c592f041
Binary files /dev/null and b/content/blog/data_leaks/stand_up_for_our_data.png differ
diff --git a/content/blog/decentralizing_the_internet/decentralized_internet.png b/content/blog/decentralizing_the_internet/decentralized_internet.png
new file mode 100644
index 000000000..e3d6258f4
Binary files /dev/null and b/content/blog/decentralizing_the_internet/decentralized_internet.png differ
diff --git a/content/blog/decentralizing_the_internet/index.md b/content/blog/decentralizing_the_internet/index.md
index cf540cd9c..e08a9b6ac 100644
--- a/content/blog/decentralizing_the_internet/index.md
+++ b/content/blog/decentralizing_the_internet/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, farming, grid, why, cloud, tech]
categories: [decentralization, farming, grid, why, cloud, tech]
extra:
- imgPath: decentralizing_the_internet.png
+ imgPath: decentralized_internet.png
---
*This article was originally published by Roel Van Sabben, a former member of the ThreeFold team.*
diff --git a/content/blog/dunia_yetu/dunia_yetu1.png b/content/blog/dunia_yetu/dunia_yetu1.png
new file mode 100644
index 000000000..c9beda9f9
Binary files /dev/null and b/content/blog/dunia_yetu/dunia_yetu1.png differ
diff --git a/content/blog/dunia_yetu/index.md b/content/blog/dunia_yetu/index.md
index 6c0098a0d..c13de9447 100644
--- a/content/blog/dunia_yetu/index.md
+++ b/content/blog/dunia_yetu/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, event, collaboration, why]
categories: [community, decentralization, event, collaboration, why]
extra:
- imgPath: dy.png
+ imgPath: dunia_yetu1.png
---
### Vision of Collective Empowerment
diff --git a/content/blog/edge_computing/index.md b/content/blog/edge_computing/index.md
index 9602fac43..cdfeab593 100644
--- a/content/blog/edge_computing/index.md
+++ b/content/blog/edge_computing/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid, tech]
categories: [grid, tech]
extra:
- imgPath: edge_computing.png
+ imgPath: meeting_digital_demands1.png
isFeatured: true
---
diff --git a/content/blog/edge_computing/meeting_digital_demands1.png b/content/blog/edge_computing/meeting_digital_demands1.png
new file mode 100644
index 000000000..d5e119358
Binary files /dev/null and b/content/blog/edge_computing/meeting_digital_demands1.png differ
diff --git a/content/blog/energy_efficiency_explained/energy_efficiency1.png b/content/blog/energy_efficiency_explained/energy_efficiency1.png
new file mode 100644
index 000000000..cfe2f4866
Binary files /dev/null and b/content/blog/energy_efficiency_explained/energy_efficiency1.png differ
diff --git a/content/blog/energy_efficiency_explained/index.md b/content/blog/energy_efficiency_explained/index.md
index 3421b261a..a2eb0c393 100644
--- a/content/blog/energy_efficiency_explained/index.md
+++ b/content/blog/energy_efficiency_explained/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
- imgPath: energy_efficiency_explained.png
+ imgPath: energy_efficiency1.png
---
At ThreeFold, we [believe](/mission) that everything we do should benefit people and our planet. The emergence of a decentralized Internet grid not only reshapes the digital landscape but helps to pioneer a more sustainable future. At the core of this evolution lies a series of innovative strategies poised to revolutionize the way we perceive and utilize digital infrastructure.
diff --git a/content/blog/escape_great_hack/great_hack.png b/content/blog/escape_great_hack/great_hack.png
new file mode 100644
index 000000000..dd1e9daa3
Binary files /dev/null and b/content/blog/escape_great_hack/great_hack.png differ
diff --git a/content/blog/escape_great_hack/index.md b/content/blog/escape_great_hack/index.md
index 878351978..70e17a3fa 100644
--- a/content/blog/escape_great_hack/index.md
+++ b/content/blog/escape_great_hack/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
- imgPath: escape_great_hack.png
+ imgPath: great_hack.png
---
## The neutrality of the current Internet is in danger.
diff --git a/content/blog/evolution_of_the_internet/evolution_of_the_internet1.png b/content/blog/evolution_of_the_internet/evolution_of_the_internet1.png
new file mode 100644
index 000000000..825d88cca
Binary files /dev/null and b/content/blog/evolution_of_the_internet/evolution_of_the_internet1.png differ
diff --git a/content/blog/evolution_of_the_internet/index.md b/content/blog/evolution_of_the_internet/index.md
index 4fbcd959b..7da552890 100644
--- a/content/blog/evolution_of_the_internet/index.md
+++ b/content/blog/evolution_of_the_internet/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,community]
categories: [tech,community]
extra:
- imgPath: evloution_of_the_internet.png
+ imgPath: evolution_of_the_internet1.png
isFeatured: true
---
diff --git a/content/blog/farming_pools/farming_pools1.png b/content/blog/farming_pools/farming_pools1.png
new file mode 100644
index 000000000..3fcff7d7d
Binary files /dev/null and b/content/blog/farming_pools/farming_pools1.png differ
diff --git a/content/blog/farming_pools/index.md b/content/blog/farming_pools/index.md
index 2d5f4f979..e7c769ba8 100644
--- a/content/blog/farming_pools/index.md
+++ b/content/blog/farming_pools/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, farming]
categories: [community, decentralization, farming]
extra:
- imgPath: farming_pools.png
+ imgPath: farming_pools1.png
---
With a long-term focus on version 4.0, and a move towards commercialization, we are embracing several new strategies to ensure more reliability and trust. Farming Pools are an innovative mechanism designed to foster better governance and equitable participation within our network.
diff --git a/content/blog/ground_up_innovations/from_the_ground_up1.png b/content/blog/ground_up_innovations/from_the_ground_up1.png
new file mode 100644
index 000000000..914733464
Binary files /dev/null and b/content/blog/ground_up_innovations/from_the_ground_up1.png differ
diff --git a/content/blog/ground_up_innovations/index.md b/content/blog/ground_up_innovations/index.md
index a04257625..1fcffac1f 100644
--- a/content/blog/ground_up_innovations/index.md
+++ b/content/blog/ground_up_innovations/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid,decentralization,tech,why]
categories: [grid,decentralization,tech,why]
extra:
- imgPath: ground_up_innovations.png
+ imgPath: from_the_ground_up1.png
---
Building a cloud and internet infrastructure from the ground up is no easy, or quick, task. But if we want a truly different way forward, there is no other way, really. We do what we do, the way we do it, because we cannot continue to put “band-aids” on problems which require a much deeper and thoughtful approach.
diff --git a/content/blog/hatch_podcast/collaborative_innovations1.png b/content/blog/hatch_podcast/collaborative_innovations1.png
new file mode 100644
index 000000000..3afa52497
Binary files /dev/null and b/content/blog/hatch_podcast/collaborative_innovations1.png differ
diff --git a/content/blog/hatch_podcast/index.md b/content/blog/hatch_podcast/index.md
index f69503c47..ad25dc2b1 100644
--- a/content/blog/hatch_podcast/index.md
+++ b/content/blog/hatch_podcast/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, event, collaboration, why]
categories: [community, event, collaboration, why]
extra:
- imgPath: hatch_podcast.png
+ imgPath: collaborative_innovations1.png
---
#### Introduction
diff --git a/content/blog/how_to_test_the_grid_part_one/grid_testing1.png b/content/blog/how_to_test_the_grid_part_one/grid_testing1.png
new file mode 100644
index 000000000..4c6dbc924
Binary files /dev/null and b/content/blog/how_to_test_the_grid_part_one/grid_testing1.png differ
diff --git a/content/blog/how_to_test_the_grid_part_one/index.md b/content/blog/how_to_test_the_grid_part_one/index.md
index a3e1e620f..b8117e5c0 100644
--- a/content/blog/how_to_test_the_grid_part_one/index.md
+++ b/content/blog/how_to_test_the_grid_part_one/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid,community]
categories: [tech,grid,community]
extra:
- imgPath: testing_main.png
+ imgPath: grid_testing1.png
---
Hi there and welcome to ThreeFold Grid Testing: Part One!
diff --git a/content/blog/how_to_test_the_grid_part_two/index.md b/content/blog/how_to_test_the_grid_part_two/index.md
index d9d05652f..eef090f48 100644
--- a/content/blog/how_to_test_the_grid_part_two/index.md
+++ b/content/blog/how_to_test_the_grid_part_two/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid]
categories: [tech,grid]
extra:
- imgPath: how_to_test_the_grid_part_two.png
+ imgPath: manual_auto_testing.png
---
In our [last post](https://www.threefold.io/blog/how-to-test-the-grid-part-one/), we started to explore what it means to test the ThreeFold Grid by highlighting the key processes and the benefits or reasons. Now, we continue our discovery path through the detailed testing process. In this post, we go deeper into two different ways of testing: Manual and Automation. Each is important, combining to ensure a strong and dependable TF Grid.
diff --git a/content/blog/how_to_test_the_grid_part_two/manual_auto_testing.png b/content/blog/how_to_test_the_grid_part_two/manual_auto_testing.png
new file mode 100644
index 000000000..ae736a81a
Binary files /dev/null and b/content/blog/how_to_test_the_grid_part_two/manual_auto_testing.png differ
diff --git a/content/blog/in_search_of_a_better_internet/index.md b/content/blog/in_search_of_a_better_internet/index.md
index b9fcf5f8e..a4bbac3d7 100644
--- a/content/blog/in_search_of_a_better_internet/index.md
+++ b/content/blog/in_search_of_a_better_internet/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
- imgPath: in_search_of_a_better_internet.png
+ imgPath: internet1.png
---
*This article was originally published by Hannah Cordes, a former member of the ThreeFold team.*
diff --git a/content/blog/in_search_of_a_better_internet/internet1.png b/content/blog/in_search_of_a_better_internet/internet1.png
new file mode 100644
index 000000000..137dba3c8
Binary files /dev/null and b/content/blog/in_search_of_a_better_internet/internet1.png differ
diff --git a/content/blog/internet_misconceptions/index.md b/content/blog/internet_misconceptions/index.md
index 46f52c70e..04e688806 100644
--- a/content/blog/internet_misconceptions/index.md
+++ b/content/blog/internet_misconceptions/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [grid,decentralization,tech,why]
categories: [grid,decentralization,tech,why]
extra:
- imgPath: internet_misconceptions.png
+ imgPath: truth_behind_misconceptions.png
---
It’s been years that the ThreeFold team has been at this work of evolving the Internet in a fair and just way. We know how the Internet works and the challenges it faces, and because of this, we have been able to do the work of upgrading the Internet with a ground-up solution.
@@ -86,4 +86,4 @@ Dive in to learn more and how to get involved:
- [From the ground up: Three inventions that make ThreeFold possible](https://www.threefold.io/blog/ground-up-innovations/)
- [The evolution of the Internet: From free to controlled, and back again](https://www.threefold.io/blog/eveloution-of-the-internet/)
-- [ThreeFold Manual](https://manual.grid.tf)
\ No newline at end of file
+- [ThreeFold Docs: Litepaper, Tokenomics, Node Guide, & More](https://docs.threefold.io/)
\ No newline at end of file
diff --git a/content/blog/internet_misconceptions/truth_behind_misconceptions.png b/content/blog/internet_misconceptions/truth_behind_misconceptions.png
new file mode 100644
index 000000000..ba55e46cc
Binary files /dev/null and b/content/blog/internet_misconceptions/truth_behind_misconceptions.png differ
diff --git a/content/blog/introducing_mycelium/index.md b/content/blog/introducing_mycelium/index.md
index 57a1f26a3..f4417cb58 100644
--- a/content/blog/introducing_mycelium/index.md
+++ b/content/blog/introducing_mycelium/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
- imgPath: mycelium.png
+ imgPath: mycelium1.png
---
*Lee is working on a very exciting new project called Mycelium, our own Ipv6 overlay network. Thanks to him for taking the time to create this short write-up on what it is and why it is needed.*
diff --git a/content/blog/introducing_mycelium/mycelium1.png b/content/blog/introducing_mycelium/mycelium1.png
new file mode 100644
index 000000000..93b7d1cd0
Binary files /dev/null and b/content/blog/introducing_mycelium/mycelium1.png differ
diff --git a/content/blog/p2p_web3/index.md b/content/blog/p2p_web3/index.md
index 084ff20d7..ca50bbfef 100644
--- a/content/blog/p2p_web3/index.md
+++ b/content/blog/p2p_web3/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
- imgPath: p2p_web3.png
+ imgPath: peer_to_peer2.png
---
First coined in 2014, Web3 is now one of the hottest and overused buzzwords in the digital space – the idea of a new iteration of the web, a decentralized environment based on blockchain technology that incorporates token-based economics. The promise of Web3 – decentralization of control and authority from big tech, data security, scalability, and privacy for users – is tremendous. But what is a promise without delivery? Is it possible that we will see major adoption soon?
diff --git a/content/blog/p2p_web3/peer_to_peer2.png b/content/blog/p2p_web3/peer_to_peer2.png
new file mode 100644
index 000000000..a242e6878
Binary files /dev/null and b/content/blog/p2p_web3/peer_to_peer2.png differ
diff --git a/content/blog/power_saving/index.md b/content/blog/power_saving/index.md
index b65a94aa0..e33d4151f 100644
--- a/content/blog/power_saving/index.md
+++ b/content/blog/power_saving/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, farming, grid, why, tech]
categories: [community, farming, grid, why, tech]
extra:
- imgPath: power_saving.png
+ imgPath: power_saving_grid1.png
---
*This article was originally published by Victoria Obeegadoo, a former member of the ThreeFold team.*
diff --git a/content/blog/power_saving/power_saving_grid1.png b/content/blog/power_saving/power_saving_grid1.png
new file mode 100644
index 000000000..5feb3eafe
Binary files /dev/null and b/content/blog/power_saving/power_saving_grid1.png differ
diff --git a/content/blog/products_in_a_machine/digital_world1.png b/content/blog/products_in_a_machine/digital_world1.png
new file mode 100644
index 000000000..973e57095
Binary files /dev/null and b/content/blog/products_in_a_machine/digital_world1.png differ
diff --git a/content/blog/products_in_a_machine/index.md b/content/blog/products_in_a_machine/index.md
index 490f4911d..65acd61e3 100644
--- a/content/blog/products_in_a_machine/index.md
+++ b/content/blog/products_in_a_machine/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
- imgPath: products_in_a_machine.png
+ imgPath: digital_world1.png
---
In an ever-expanding and evolving digital world, our relationship with the Internet is generally underdiscussed. We've come to rely on platforms that promise connection, information, and entertainment. Yet, there are cracks in the system and massive trade offs for all of us, the "users." Let's pause for a moment and consider, is today's Internet truly serving us?
diff --git a/content/blog/reliability/index.md b/content/blog/reliability/index.md
index 7a9121696..1a60c3430 100644
--- a/content/blog/reliability/index.md
+++ b/content/blog/reliability/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
- imgPath: reliability.png
+ imgPath: realiblity_decentralized_internet1.png
---
In today's digital landscape, the development of a decentralized open-source Internet infrastructure marks a significant leap forward. However, while the foundational structure of this innovation brings promise, its inherent reliability isn't guaranteed. After more than five years of building and expanding the open-source ThreeFold Grid, it's now time we pivot towards commercialization. Ensuring a robust, dependable, and trustworthy offering becomes paramount. In this post, we'll share the various ways that the ThreeFold Grid is and will become reliable.
diff --git a/content/blog/reliability/realiblity_decentralized_internet1.png b/content/blog/reliability/realiblity_decentralized_internet1.png
new file mode 100644
index 000000000..a475eb6c7
Binary files /dev/null and b/content/blog/reliability/realiblity_decentralized_internet1.png differ
diff --git a/content/blog/resolving_problems/golbal_tech_issues1.png b/content/blog/resolving_problems/golbal_tech_issues1.png
new file mode 100644
index 000000000..253476f51
Binary files /dev/null and b/content/blog/resolving_problems/golbal_tech_issues1.png differ
diff --git a/content/blog/resolving_problems/index.md b/content/blog/resolving_problems/index.md
index 11e108d64..9757b7330 100644
--- a/content/blog/resolving_problems/index.md
+++ b/content/blog/resolving_problems/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
- imgPath: resolving_problems.png
+ imgPath: golbal_tech_issues1.png
---
Imagine this: two friends in East Africa trying to connect via a video call. Instead of a direct link, their data embarks on a round trip to far-off data centers, consuming resources and adding costs. It's a snippet of a larger issue—how centralized infrastructure is holding back progress in connectivity.
diff --git a/content/blog/solar_comparison/decentralized_internet.png b/content/blog/solar_comparison/decentralized_internet.png
new file mode 100644
index 000000000..0ff6f22f2
Binary files /dev/null and b/content/blog/solar_comparison/decentralized_internet.png differ
diff --git a/content/blog/solar_comparison/index.md b/content/blog/solar_comparison/index.md
index c3312fdf3..0bebe100e 100644
--- a/content/blog/solar_comparison/index.md
+++ b/content/blog/solar_comparison/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, farming, grid, cloud]
categories: [community, decentralization, farming, grid, cloud]
extra:
- imgPath: solar_comparison.png
+ imgPath: decentralized_internet.png
---
*This article was originally published by Emilie Ouwerx, a former member of the ThreeFold team.*\
diff --git a/content/blog/tech_as_a_tool_for_humanity/index.md b/content/blog/tech_as_a_tool_for_humanity/index.md
index 02c6418f3..a5b542ef8 100644
--- a/content/blog/tech_as_a_tool_for_humanity/index.md
+++ b/content/blog/tech_as_a_tool_for_humanity/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, why]
categories: [decentralization, why]
extra:
- imgPath: tech_as_a_tool_for_humanity.png
+ imgPath: tool_for_humanity1.png
---
*This article was originally published by Victoria Obeegadoo, a former member of the ThreeFold team.*
diff --git a/content/blog/tech_as_a_tool_for_humanity/tool_for_humanity1.png b/content/blog/tech_as_a_tool_for_humanity/tool_for_humanity1.png
new file mode 100644
index 000000000..ca71f8d6b
Binary files /dev/null and b/content/blog/tech_as_a_tool_for_humanity/tool_for_humanity1.png differ
diff --git a/content/blog/tf.png b/content/blog/tf.png
new file mode 100644
index 000000000..0ccade5fd
Binary files /dev/null and b/content/blog/tf.png differ
diff --git a/content/blog/tf_ecosystem_comes_alive/index.md b/content/blog/tf_ecosystem_comes_alive/index.md
index 9cbe674e4..ac30c1a08 100644
--- a/content/blog/tf_ecosystem_comes_alive/index.md
+++ b/content/blog/tf_ecosystem_comes_alive/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, why]
categories: [community, why]
extra:
- imgPath: tf_ecosystem_comes_alive.png
+ imgPath: tf_ecosystem1.png
---
Collaborative. Self-organizing. Interconnected. Dynamic. Diverse. Resilient. Sustainable.
diff --git a/content/blog/tf_ecosystem_comes_alive/tf_ecosystem1.png b/content/blog/tf_ecosystem_comes_alive/tf_ecosystem1.png
new file mode 100644
index 000000000..cdd7e898c
Binary files /dev/null and b/content/blog/tf_ecosystem_comes_alive/tf_ecosystem1.png differ
diff --git a/content/blog/tf_grid_peoples_internet/by_and_for_the_people.png b/content/blog/tf_grid_peoples_internet/by_and_for_the_people.png
new file mode 100644
index 000000000..980a9b07c
Binary files /dev/null and b/content/blog/tf_grid_peoples_internet/by_and_for_the_people.png differ
diff --git a/content/blog/tf_grid_peoples_internet/index.md b/content/blog/tf_grid_peoples_internet/index.md
index 7d3536cb2..2db45af41 100644
--- a/content/blog/tf_grid_peoples_internet/index.md
+++ b/content/blog/tf_grid_peoples_internet/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization, grid, why]
categories: [community, decentralization, grid, why]
extra:
- imgPath: tf_grid_peoples_internet.png
+ imgPath: by_and_for_the_people.png
---
What do you think of when you hear the word Internet? For many, it's the websites and applications we consume online as end users. But the Internet is much more than this. And ultimately, every action we take online goes through a complex set of automated processes and protocols to store, run, and transmit data (e.g. photos, videos, messages, other files) across the global Internet infrastructure.
diff --git a/content/blog/the_farming_community/index.md b/content/blog/the_farming_community/index.md
index 1525d4a2e..b38aee2c8 100644
--- a/content/blog/the_farming_community/index.md
+++ b/content/blog/the_farming_community/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,grid,farming,community]
categories: [tech,grid,farming,community]
extra:
- imgPath: the_farming_community.png
+ imgPath: spotlight_farming1.png
---
The ThreeFold community consists of many different roles creating a whole [ecosystem](https://www.threefold.io/blog/tf-ecosystem-comes-alive/) that contributes to the growth of the ThreeFold Grid and makes it more reliable and stable. Today, we're spotlighting the farming community, the backbone of the ThreeFold Grid.
diff --git a/content/blog/the_farming_community/spotlight_farming1.png b/content/blog/the_farming_community/spotlight_farming1.png
new file mode 100644
index 000000000..b2dd248c9
Binary files /dev/null and b/content/blog/the_farming_community/spotlight_farming1.png differ
diff --git a/content/blog/three_layers/building_blocks_internet1.png b/content/blog/three_layers/building_blocks_internet1.png
new file mode 100644
index 000000000..4ba366407
Binary files /dev/null and b/content/blog/three_layers/building_blocks_internet1.png differ
diff --git a/content/blog/three_layers/index.md b/content/blog/three_layers/index.md
index 28efb7e21..2f27165be 100644
--- a/content/blog/three_layers/index.md
+++ b/content/blog/three_layers/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
- imgPath: img/three_layers.png
+ imgPath: building_blocks_internet1.png
isFeatured: true
---
diff --git a/content/blog/threefold_cooperative/decentralized_governance.png b/content/blog/threefold_cooperative/decentralized_governance.png
new file mode 100644
index 000000000..52ceaab6e
Binary files /dev/null and b/content/blog/threefold_cooperative/decentralized_governance.png differ
diff --git a/content/blog/threefold_cooperative/index.md b/content/blog/threefold_cooperative/index.md
index ee4a06610..575e4f82e 100644
--- a/content/blog/threefold_cooperative/index.md
+++ b/content/blog/threefold_cooperative/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, decentralization]
categories: [community, decentralization]
extra:
- imgPath: threefold_cooperative.png
+ imgPath: decentralized_governance.png
isFeatured: true
---
diff --git a/content/blog/threefold_data_sovereignty/data_sovereignity.png b/content/blog/threefold_data_sovereignty/data_sovereignity.png
new file mode 100644
index 000000000..714e27498
Binary files /dev/null and b/content/blog/threefold_data_sovereignty/data_sovereignity.png differ
diff --git a/content/blog/threefold_data_sovereignty/index.md b/content/blog/threefold_data_sovereignty/index.md
index e24e49aa9..dec9650b5 100644
--- a/content/blog/threefold_data_sovereignty/index.md
+++ b/content/blog/threefold_data_sovereignty/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why, tech]
categories: [decentralization, grid, why, tech]
extra:
- imgPath: threefold_data_sovereignty.png
+ imgPath: data_sovereignity.png
---
If you’ve seen [The Social Dilemma](https://www.youtube.com/watch?v=uaaC57tcci0), you know all too well that today, people are being turned into products. Everything we do online – all of the data we upload and all of our digital activities – is tracked and oftentimes used against us. Targeted advertising is just the beginning.
diff --git a/content/blog/threefold_herdao_dar/embracing_diversity1.png b/content/blog/threefold_herdao_dar/embracing_diversity1.png
new file mode 100644
index 000000000..efd6a96a7
Binary files /dev/null and b/content/blog/threefold_herdao_dar/embracing_diversity1.png differ
diff --git a/content/blog/threefold_herdao_dar/index.md b/content/blog/threefold_herdao_dar/index.md
index 48d560ad1..588010eac 100644
--- a/content/blog/threefold_herdao_dar/index.md
+++ b/content/blog/threefold_herdao_dar/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community, event, collaboration, why]
categories: [community, event, collaboration, why]
extra:
- imgPath: diversitytf.png
+ imgPath: embracing_diversity1.png
---
In today's rapidly evolving technological landscape, diversity and inclusion are not just buzzwords; they are essential components for driving innovation and progress. As the tech and IT sectors continue to shape the future, it's crucial to recognize the importance of fostering diverse perspectives and creating inclusive environments where everyone feels valued and empowered to contribute.
diff --git a/content/blog/threefold_impact/impacting_the_future1.png b/content/blog/threefold_impact/impacting_the_future1.png
new file mode 100644
index 000000000..0393d8f6c
Binary files /dev/null and b/content/blog/threefold_impact/impacting_the_future1.png differ
diff --git a/content/blog/threefold_impact/index.md b/content/blog/threefold_impact/index.md
index bd4bd9605..ce882eb2f 100644
--- a/content/blog/threefold_impact/index.md
+++ b/content/blog/threefold_impact/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [tech,community]
categories: [tech,community]
extra:
- imgPath: threefold_impact.png
+ imgPath: impacting_the_future1.png
isFeatured: true
---
diff --git a/content/blog/tier_s_data_center/data_centre_tiers1.png b/content/blog/tier_s_data_center/data_centre_tiers1.png
new file mode 100644
index 000000000..a7385382c
Binary files /dev/null and b/content/blog/tier_s_data_center/data_centre_tiers1.png differ
diff --git a/content/blog/tier_s_data_center/index.md b/content/blog/tier_s_data_center/index.md
index 457183e6f..703d1948c 100644
--- a/content/blog/tier_s_data_center/index.md
+++ b/content/blog/tier_s_data_center/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [cloud, tech]
categories: [cloud, tech]
extra:
- imgPath: tier_s_data_center.png
+ imgPath: data_centre_tiers1.png
---
In an era where artificial intelligence is reshaping our technological landscape, it is imperative to reconsider how we design and operate data centers. With decades of experience in the Internet and Cloud space and in response to technological evolutions, ThreeFold is proposing a new approach.
diff --git a/content/blog/transformative_impact_summit/creating_tranformative1.png b/content/blog/transformative_impact_summit/creating_tranformative1.png
new file mode 100644
index 000000000..4ccf0113e
Binary files /dev/null and b/content/blog/transformative_impact_summit/creating_tranformative1.png differ
diff --git a/content/blog/transformative_impact_summit/index.md b/content/blog/transformative_impact_summit/index.md
index 92c063c96..8916b1198 100644
--- a/content/blog/transformative_impact_summit/index.md
+++ b/content/blog/transformative_impact_summit/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [community]
categories: [community]
extra:
- imgPath: transformative_impact_summit.png
+ imgPath: creating_tranformative1.png
---
*“By bringing together those dedicating their lives to making the world a better place, and empowering them with exposure, support, connection, and funding, we not only celebrate transformative impact, we create it.”*
diff --git a/content/blog/what_is_peer_to_peer/index.md b/content/blog/what_is_peer_to_peer/index.md
index c6a8e67a0..5c5e9a14f 100644
--- a/content/blog/what_is_peer_to_peer/index.md
+++ b/content/blog/what_is_peer_to_peer/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, why]
categories: [decentralization, grid, why]
extra:
- imgPath: peer_to_peer.png
+ imgPath: peer-to-peer1.png
---
## What is Peer-to-Peer?
diff --git a/content/blog/what_is_peer_to_peer/peer-to-peer1.png b/content/blog/what_is_peer_to_peer/peer-to-peer1.png
new file mode 100644
index 000000000..a242e6878
Binary files /dev/null and b/content/blog/what_is_peer_to_peer/peer-to-peer1.png differ
diff --git a/content/blog/zero_os_blog/index.md b/content/blog/zero_os_blog/index.md
index c221f1b21..fccd5d84e 100644
--- a/content/blog/zero_os_blog/index.md
+++ b/content/blog/zero_os_blog/index.md
@@ -9,7 +9,7 @@ taxonomies:
tags: [decentralization, grid, cloud, tech]
categories: [decentralization, grid, cloud, tech]
extra:
- imgPath: zero_os_blog.png
+ imgPath: scalable_secure_OS.png
---
diff --git a/content/blog/zero_os_blog/scalable_secure_OS.png b/content/blog/zero_os_blog/scalable_secure_OS.png
new file mode 100644
index 000000000..334a192b9
Binary files /dev/null and b/content/blog/zero_os_blog/scalable_secure_OS.png differ
diff --git a/content/blogarchive/build_on_threefolds_open_infrastructure_part_three/index.md b/content/blogarchive/build_on_threefolds_open_infrastructure_part_three/index.md
index 69b4b584e..387a7cbd7 100644
--- a/content/blogarchive/build_on_threefolds_open_infrastructure_part_three/index.md
+++ b/content/blogarchive/build_on_threefolds_open_infrastructure_part_three/index.md
@@ -69,7 +69,7 @@ And the best thing about the [playground](https://library.threefold.me/info/manu
-We’ve entered the [third phase of our journey](https://www.threefold.io/blog/four-phases-of-threefold/) towards our ultimate vision of a better future – the phase of Web 4. In addition to fully comprehensive decentralized edge cloud solutions, the ThreeFold ecosystem is also developing a range of applications and experiences across IoT, metaverse, blockchain, DeFi, banking, education and beyond.
+We’ve entered the [third phase of our journey](https://www.threefold.io/blog/four-phases-of-threefold/) towards our ultimate vision of a better future – the phase of Web4. In addition to fully comprehensive decentralized edge cloud solutions, the ThreeFold ecosystem is also developing a range of applications and experiences across IoT, metaverse, blockchain, DeFi, banking, education and beyond.
diff --git a/content/blogarchive/threefold_at_consensus_2022/index.md b/content/blogarchive/threefold_at_consensus_2022/index.md
index a337e9ae1..37db79a62 100644
--- a/content/blogarchive/threefold_at_consensus_2022/index.md
+++ b/content/blogarchive/threefold_at_consensus_2022/index.md
@@ -36,7 +36,7 @@ It’s no secret that many projects in the space still rely on centralized infra
## A decentralized world needs a decentralized foundation
-I think we’ve already come to Consensus that decentralization has to start at the foundational level. See what I did there? The ThreeFold co-founders have more than 20 years of experience in setting world records in Internet storage and cloud automation technologies. With ThreeFold, they started from scratch to build a fully decentralized Internet infrastructure that’s peer-to-peer and open source. We’re realizing the promise of an Internet built and owned by the people, back to the vision of Web 1 through the implementation of Web 4 technology. For us, it’s obvious that we simply cannot build a fair and equal digital world on top of today's old-world infrastructure which is owned by the few.
+I think we’ve already come to Consensus that decentralization has to start at the foundational level. See what I did there? The ThreeFold co-founders have more than 20 years of experience in setting world records in Internet storage and cloud automation technologies. With ThreeFold, they started from scratch to build a fully decentralized Internet infrastructure that’s peer-to-peer and open source. We’re realizing the promise of an Internet built and owned by the people, back to the vision of Web 1 through the implementation of Web4 technology. For us, it’s obvious that we simply cannot build a fair and equal digital world on top of today's old-world infrastructure which is owned by the few.
diff --git a/content/community/discourse.png b/content/community/discourse.png
deleted file mode 100644
index f4c41cf5b..000000000
Binary files a/content/community/discourse.png and /dev/null differ
diff --git a/content/community/discourse_dark.png b/content/community/discourse_dark.png
new file mode 100644
index 000000000..319182eed
Binary files /dev/null and b/content/community/discourse_dark.png differ
diff --git a/content/community/gh.png b/content/community/gh.png
deleted file mode 100644
index 4d27771b4..000000000
Binary files a/content/community/gh.png and /dev/null differ
diff --git a/content/community/github_dark.png b/content/community/github_dark.png
new file mode 100644
index 000000000..229861c07
Binary files /dev/null and b/content/community/github_dark.png differ
diff --git a/content/community/index.md b/content/community/index.md
index c37e8206c..a40f116db 100644
--- a/content/community/index.md
+++ b/content/community/index.md
@@ -15,57 +15,61 @@ extra:
{% row( style="center mtop semiNarrow") %}
-## **Join the
Community**
+
Join the Community
{% end %}
+
+
+
{% row( style="center semiNarrow") %}
-
+
-[](https://forum.threefold.io/)
+[](https://forum.threefold.io/)
-###### **Forum**
-
Ask Questions
+
Forum
+
+
Ask Questions
|||
-[](https://github.com/threefoldfoundation)
+[](https://github.com/threefoldfoundation)
-###### **GitHub | Tech**
+
GitHub | Tech
-
Open-Source Collaboration for Tech Development
+
Open-Source Collaboration for Tech Development
|||
-[](https://github.com/threefoldtech)
+[](https://github.com/threefoldtech)
-###### **GitHub | Foundation**
+
GitHub | Foundation
-
Open-source Collaboration for Websites and Online Info
+
Open-source Collaboration for Websites and Online Info
|||
-[](https://x.com/threefold_io)
+[](https://x.com/threefold_io)
-###### **X | Twitter**
+
X | Twitter
-
"Tweet" With Us
+
"Tweet" With Us
{% end %}
@@ -77,9 +81,9 @@ extra:
-###### **Telegram News**
+
Telegram News
-
Stay Updated
+
Stay Updated
|||
@@ -89,9 +93,9 @@ extra:
-###### **Telegram Main Chat**
+
-[](https://www.reddit.com/r/threefold/)
+[](https://www.reddit.com/r/threefold/)
-###### **Reddit**
+
-[](https://www.linkedin.com/company/threefold-io/)
+[](https://www.linkedin.com/company/threefold-io/)
-###### **LinkedIn**
+
{% end %}
@@ -180,7 +184,7 @@ extra:
{% row( style="center mtop semiNarrow") %}
-## **Keep up with ThreeFold Events**
+