commit 648680d0aeaca6568a3ca59a9004c59e47620e15
Author: ourworld_web <>
Date: Wed Feb 12 06:59:33 2025 +0000
Initial commit
diff --git a/.github/workflows/tf_update_dev.yml b/.github/workflows/tf_update_dev.yml
new file mode 100644
index 0000000..6e82fe7
--- /dev/null
+++ b/.github/workflows/tf_update_dev.yml
@@ -0,0 +1,46 @@
+name: www2.threefold_io
+on:
+ push:
+ branches: [ development ]
+
+jobs:
+ deploy:
+ name: Deploy
+ runs-on: ubuntu-latest
+ steps:
+ - name: pushing latest change on www2.threefold.io
+ uses: appleboy/ssh-action@master
+ with:
+ host: dev.threefold.io
+ username: webuser
+ key: ${{ secrets.TF_SECRET }}
+ port: 34022
+ script: |
+ cd websites/www2/www_threefold_io/
+ git log -1
+ git fetch
+ git reset --hard origin/development
+ sed -i "s/https:\/\/www.threefold.io/https:\/\/dev.threefold.io/g" config.toml
+ ./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://www2.threefold.io -w 404'
\ No newline at end of file
diff --git a/.github/workflows/tf_update_prod.yml b/.github/workflows/tf_update_prod.yml
new file mode 100644
index 0000000..1e3595a
--- /dev/null
+++ b/.github/workflows/tf_update_prod.yml
@@ -0,0 +1,46 @@
+name: www.threefold_io
+on:
+ push:
+ branches: [ master ]
+
+jobs:
+ deploy:
+ name: Deploy
+ runs-on: ubuntu-latest
+ steps:
+ - name: pushing latest change on www.threefold.io
+ uses: appleboy/ssh-action@master
+ with:
+ host: www.threefold.io
+ username: root
+ key: ${{ secrets.TF_SECRET }}
+ port: 22
+ script: |
+ cd /opt/www_threefold_io/
+ git log -1
+ git fetch
+ git reset --hard origin/master
+ sed -i "s/https:\/\/dev.threefold.io/https:\/\/www.threefold.io/g" config.toml
+ ./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://www.threefold.io -w 404'
\ No newline at end of file
diff --git a/.github/workflows/update_dev2.yml b/.github/workflows/update_dev2.yml
new file mode 100644
index 0000000..fa19830
--- /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/.github/workflows/update_www3.yml b/.github/workflows/update_www3.yml
new file mode 100644
index 0000000..b6bc8f5
--- /dev/null
+++ b/.github/workflows/update_www3.yml
@@ -0,0 +1,46 @@
+name: www3.threefold_io
+on:
+ push:
+ branches: [ 3.10.0 ]
+
+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/www3/www_threefold_io/
+ git log -1
+ git restore .
+ git pull
+ sed -i "s/https:\/\/www.threefold.io/https:\/\/www3.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'
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..415604b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,35 @@
+examples/builder
+examples/docker
+examples/publisher
+examples/texttools
+examples/gittools
+examples/tmux
+examples/vredis2
+*dSYM/
+publisher/publish
+install_publisher
+.vmodules/
+vex_webserver
+publishtools/publishtools
+.vscode
+*.log
+!.env.example
+.cache
+.DS_Store
+src/.temp
+content/person
+content/project
+node_modules
+!.env.example
+.env
+.env.*
+yarn.lock
+.installed
+package-lock.json
+dist
+.temp
+run*
+install*
+public
+static/css
+tailwindcss
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..35e7575
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,4 @@
+[submodule "threefold_data"]
+ path = threefold_data
+ url = https://github.com/threefoldfoundation/threefold_data.git
+ ignore = dirty
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..6905868
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+SHELL := /bin/bash
+
+build:
+ . ./build.sh
+
+start:
+ . ./start.sh
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8e50cf5
--- /dev/null
+++ b/README.md
@@ -0,0 +1,89 @@
+# Welcome to Welcome to ThreeFold Website RepositoryWebsite Repository
+
+
+
+## About
+
+The official website of ThreeFold Foundation.
+
+Production: [www.threefold.io](https://www.threefold.io) (master branch)
+
+Staging: www2.threefold.io (development branch)
+
+Last Updated: September 2024
+
+## Administrators
+
+[ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin)
+
+## Contribution Procedure
+
+
+
+It is highly important to follow this procedure to contribute to the website content.
+__WARNING__: DO NOT commit straight into the __master__ / __development__ branches.
+
+1. Feel free to [create a new issue](https://github.com/threefoldfoundation/www_threefold_io/issues/new) to report an error on the website, or if you have any suggestions on website improvements.
+
+2. Make your own branch from the __development__ branch. By creating a new branch from __development__ you will be provided with the latest copy of the live website content at the staging site, www2.threefold.io.
+
+3. Add your edits into your own branch via code editor locally, and push your local changes online. WARNING: DO NOT add your edits straight into __master__ / __development__ branch.
+
+5. Create a PR to merge your own branch into **development**, and assign one of [ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin) on your PR as reviewer, or assign @sasha-astiadi as reviewer.
+
+7. When PR is approved, you can see your changes on staging env on www2.threefold.io (development branch)
+
+8. Admin will then create a PR to merge **development** into into **master** (production branch)
+
+10. When PR is approved, you can see your changes live on production www.threefold.io (master branch).
+
+## Development
+
+While contributing content to this site doesn't strictly require setting up a development environment, it will allow you to preview your changes and that's super handy.
+
+To do that, the following prerequisites are needed:
+
+* macOS or Linux
+* [Zola](https://www.getzola.org/documentation/getting-started/installation/)
+
+Then clone the repository recursively to also pull in contents of `threefold_data`:
+
+```bash
+#if you don't have hero installed yet, run the following commands
+curl https://raw.githubusercontent.com/freeflowuniverse/crystallib/development/scripts/install_hero.sh > /tmp/hero_install.sh
+bash /tmp/hero_install.sh
+
+#install zola & tailwind
+hero installers -n zola
+
+#get this repo be careful --pr will remove all local changes (pull reset), -b development means we are on the development branch
+hero git pull -u https://github.com/threefoldfoundation/www_threefold_io -b development -pr
+
+#cd to the directory
+eval $(hero git cd -u https://github.com/threefoldfoundation/www_threefold_io)
+
+bash build.sh
+
+```
+
+Finally, start a browsable local copy of the site that will respond to changes in the source files like this:
+
+```
+zola serve
+```
+
+Zola will display a local address such as `http://127.0.0.1:1111` which you can click or copy and paste into your browser to view the site on your own machine.
+
+That's it—have fun!
+
+
+# Guidelines for Editing Blog, News, and Team Images
+
+### General:
+Ensure all images are optimized to be less than 1MB for faster loading and better performance.
+
+### Blog & News:
+Use a resolution of **1200 x 600** pixels or maintain the same aspect ratio to fit seamlessly with placeholders.
+
+### Team:
+Keep images square with a resolution of **640 x 640** pixels for consistent appearance.
diff --git a/_archive/team.html b/_archive/team.html
new file mode 100644
index 0000000..b2bc4d0
--- /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
new file mode 100755
index 0000000..8f74692
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,46 @@
+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
+ 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
+echo "Initializing tailwind..."
+if [[ ! -f "tailwind.config.js" ]]
+then
+ ./tailwindcss init
+ sed -i '' "s| content: \\[\\],| content: \\['./templates/**/*.html'\\],|g" tailwind.config.js
+fi
+
+# compiles tailwind css for prod & builds project
+echo "Compiling tailwindcss and building zola project..."
+rm -rf public static/css
+./tailwindcss -i css/index.css -o ./static/css/index.css --minify
+zola --root $ABS_DIR_OF_SCRIPT build
\ No newline at end of file
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..05ac2c0
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,100 @@
+# The URL the site will be built for
+base_url = "https://dev.threefold.io"
+# Change this to your own URL! Please note this variable **must** be uncommented .
+
+title = "ThreeFold"
+description = "Our global digital backbone"
+
+# When set to "true", a feed is automatically generated.
+generate_feed = true
+
+# The filename to use for the feed. Used as the template filename, too.
+# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
+# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
+feed_filename = "atom.xml"
+
+# The number of articles to include in the feed. All items are included if
+# this limit is not set (the default).
+# feed_limit = 10
+
+# Whether to automatically compile all Sass files in the sass directory
+compile_sass = false
+
+# When set to "true", the generated HTML files are minified.
+# minify_html = true
+# I'm keeping off for now -- buggy -- 2021-02-05 (@keats says it'll be fixed 0.14.0)
+
+# Whether to build a search index to be used later on by a JavaScript library
+build_search_index = false
+
+[markdown]
+# Whether to do syntax highlighting
+# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
+highlight_code = true
+highlight_theme = "visual-studio-dark"
+
+# When set to "true", emoji aliases translated to their corresponding
+# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
+render_emoji = false
+
+# Whether external links are to be opened in a new tab
+# If this is true, a `rel="noopener"` will always automatically be added for security reasons
+# external_links_target_blank = false
+
+# Whether to set rel="nofollow" for all external links
+external_links_no_follow = true
+
+# Whether to set rel="noreferrer" for all external links
+external_links_no_referrer = true
+
+# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)
+# For example, `...` into `…`, `"quote"` into `“curly”` etc
+smart_punctuation = true
+
+[build]
+not_found = "404.md"
+
+[[taxonomies]]
+name = "categories"
+feed = true
+paginate_by = 6
+paginate_path = "blog-posts"
+
+[[taxonomies]]
+name = "partners-category"
+feed = true
+paginate_by = 6
+paginate_path = "partner-card"
+
+[[taxonomies]]
+name = "news-category"
+feed = true
+paginate_by = 6
+paginate_path = "news-card"
+
+[[taxonomies]]
+name = "roles"
+feed = true
+paginate_by = 2
+paginate_path = "join-us"
+
+[[taxonomies]]
+name = "tags"
+feed = true
+paginate_by = 9
+paginate_path = "tags"
+
+[[taxonomies]]
+name = "people"
+feed = false
+paginate_by = 9
+paginate_path = "people"
+
+[[taxonomies]]
+name = "memberships"
+feed = false
+paginate_by = 8
+paginate_path = "people/memberships"
+
+[extra]
+# Put all your custom variables here
diff --git a/content/404.md b/content/404.md
new file mode 100644
index 0000000..fcb9253
--- /dev/null
+++ b/content/404.md
@@ -0,0 +1,8 @@
+---
+title: "404"
+description: ""
+insert_anchor_links: "left"
+template: "404.html"
+
+---
+
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..6ff91ec
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,204 @@
+---
+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: ThreeFold
+ imgPath: home/tf.png
+---
+
+
+
+
+{% row(style="center") %}
+
+
+
+
+
+
+
+
+## The (Re)Birth of **the Internet.**
+
+ThreeFold is a peer-to-peer open-source Internet platform that connects users directly with local Internet capacity provided by farmers. No intermediaries such as centralized servers.
+
+{% end %}
+
+{% row(style="center narrow") %}
+
+
+
+|||
+
+
+
+|||
+
+
+
+|||
+
+
+
+{% end %}
+
+
+
+
+{% grid_stats() %}
+
+### The ThreeFold Grid v3.7.0
+
+## **Live and Operational**
+
+{% end %}
+
+
+
+
+{% row(style="center narrow") %}
+
+## Together **We Build.**
+
+The future is about decentralization, participation, and working together to achieve our goals. As a decentralized movement, we encourage the community to get involved. This new Internet can only succeed if we find ways to collaborate where we together pull this Internet concept forward. Below, please find some of the ways you can join us in building a better Internet.
+
+{% end %}
+
+{% row(style="center narrow") %}
+
+
+
+
+
+### Farm Local Internet Capacity **and Earn TFT**
+
+By connecting hardware at your home or office – or anywhere you'd like – you provide Internet capacity for the people around you and earn a new digital currency, TFT.
+
+{% end %}
+
+{% row(style="center narrow") %}
+
+
+
+|||
+
+
+
+|||
+
+
+
+{% end %}
+
+{% row(style="center narrow") %}
+
+
+
+
+
+### Build On Top of a **Decentralized Infrastructure**
+
+True digital sovereignty for open-source builders. The ThreeFold Grid provides limitless possibilities, and brings a playground of industry-compatible easy-to-deploy solutions for developers.
+
+{% end %}
+
+{% row(style="center narrow") %}
+
+
+
+|||
+
+
+
+|||
+
+
+
+{% end %}
+
+
+
+{% featured_stories() %}
+
+## Featured Stories
+
+{% end %}
+
+
+
+{% team_sec() %}
+
+## **The Team**
+
+{% end %}
+
+
+
+{% row(style="center margin") %}
+
+## Believers and Collaborators **In a Better Internet**
+
+We are truly proud to be trusted by some of the biggest names in the industry.
+
+
+
+
+
+{% end %}
+
+
+
+
+
+
+
+{% row(style="center") %}
+
+## **In the News**
+
+{% end %}
+
+{% row(style="center between") %}
+
+[](https://www.forbes.com/sites/johnkoetsier/2020/06/20/largest-distributed-peer-to-peer-grid-on-the-planet-laying-foundation-for-a-decentralized-internet/?fbclid=IwAR1WKCpqLcWPRWg5bPD6RCQE5JJjRPt6ey5vbEnu3db2FvJnp6-YKeVZNW8#79aa340e6798)
+
+|||
+
+[](https://cointelegraph.com/news/peer-to-peer-internet-has-lofty-goal-to-bring-true-decentralization)
+
+|||
+
+[](https://news.yahoo.com/news/threefold-set-disrupt-status-quo-051457787.html?guccounter=1)
+
+{% end %}
+
+{% row(style="center between") %}
+
+[](https://hackernoon.com/is-it-possible-to-create-a-decentralized-internet-this-startup-and-its-farmers-think-so-ey2e3ycf)
+
+|||
+
+[](https://smartereum.com/189750/threefold-is-audaciously-building-a-new-decentralized-internet/)
+
+|||
+
+[](https://tgdaily.com/web/6-dfinity-threefold-are-leading-an-internet-decentralization-revolution/)
+
+{% end %}
+
+{% row(style="center between") %}
+
+[](https://cointelegraph-com.cdn.ampproject.org/c/s/cointelegraph.com/news/is-a-new-decentralized-internet-or-web-3-0-possible/amp)
+
+|||
+
+[](https://www.banklesstimes.com/2021/06/14/threefolds-green-technology-strategy-to-a-fairer-more-sustainable-world/)
+
+|||
+
+[](https://gritdaily.com/belarus-governments-control-internet/)
+
+{% end %}
diff --git a/content/action/index.md b/content/action/index.md
new file mode 100644
index 0000000..54ecb80
--- /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 0000000..0ccade5
Binary files /dev/null and b/content/action/tf.png differ
diff --git a/content/blog/_index.md b/content/blog/_index.md
new file mode 100644
index 0000000..1fa4f49
--- /dev/null
+++ b/content/blog/_index.md
@@ -0,0 +1,18 @@
+---
+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
+
+sort_by: "date"
+insert_anchor_links: "left"
+#base_url: "posts"
+#first: "first"
+#last: "last"
+template: "layouts/blog.html"
+page_template: "blogPage.html"
+#transparent: true
+generate_feed: true
+extra:
+ 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 0000000..60096f9
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/africa_regen_summit_ii.png b/content/blog/africa_regen_summit_ii/africa_regen_summit_ii.png
new file mode 100644
index 0000000..ec0a753
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/africa_regen_summit_ii.png differ
diff --git a/content/blog/africa_regen_summit_ii/greg_regen.jpeg b/content/blog/africa_regen_summit_ii/greg_regen.jpeg
new file mode 100644
index 0000000..34d4bf0
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/greg_regen.jpeg differ
diff --git a/content/blog/africa_regen_summit_ii/group_regen.jpeg b/content/blog/africa_regen_summit_ii/group_regen.jpeg
new file mode 100644
index 0000000..23eae89
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/group_regen.jpeg differ
diff --git a/content/blog/africa_regen_summit_ii/index.md b/content/blog/africa_regen_summit_ii/index.md
new file mode 100644
index 0000000..cb5eae1
--- /dev/null
+++ b/content/blog/africa_regen_summit_ii/index.md
@@ -0,0 +1,37 @@
+---
+id: africa_regen_summit_ii
+title: "Reflecting on Africa Regenerative Futures Summits : Shaping a better digital future in Africa"
+image_caption: Africa Regen II
+description: In 2023, we had the pleasure of hosting two summits in Zanzibar – Read about the key outcomes.
+date: 2023-11-21
+taxonomies:
+ people: [sam_taggart]
+ tags: [community, event, collaboration, why]
+ categories: [community, event, collaboration, why]
+extra:
+ 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.
+
+
+
+During the inaugural summit in July, Zanzibar's President, Dr. Hussein Mwinyi, honored us with his presence. In a formal declaration, he publicly expressed the government's dedication to establishing a digital free zone, a locally-owned Internet infrastructure, and an incubator to support young local innovators – all in collaboration with ThreeFold – and their commitment to the ICT sector as a whole.
+
+
+
+The second summit saw the birth of Dunia Yetu (meaning "Our World" in Swahili), a collaborative movement forged in partnership with a cohort of tech developers and innovators from Dar Es Salaam. This initiative is driven by a shared commitment to reshape the digital landscape in Tanzania and Africa. Its goals include empowering coders, fostering economic development, and constructing a sovereign, autonomous digital ecosystem for a more promising digital future.
+
+
+
+Looking ahead to 2024, our vision includes a continued series of gatherings focused on OurWorld, ThreeFold, and other projects and individuals prioritizing a planet-first, people-first approach to support Tanzania and the broader African continent.
+
+
+
+More information:
+
+
+
+- **Summit I:** Read [Zanzibar Seeks to Become a Digital FreeZone](https://www.thecitizen.co.tz/tanzania/zanzibar/zanzibar-seeks-to-become-digital-freezone--4316150) (via The Citizen) and [Mwinyi Commits to Improvement of Digital Spaces](https://dailynews.co.tz/mwinyi-commits-to-improvement-of-digital-spaces/) (via Daily News Tanzania) for further details.
+- **Summit II:** Learn more about [Dunia Yetu](https://www.threefold.io/newsroom/duniayetulaunchdar/)
+- **Dunia Yetu:** Read [Sovereign Internet - A game changer for Tanzania](https://www.thecitizen.co.tz/tanzania/news/national/sovereign-internet-a-game-changer-to-tanzania-startups-ecosystem-growth-449806) (via The Citizen)
\ No newline at end of file
diff --git a/content/blog/africa_regen_summit_ii/kalebu_regen.jpeg b/content/blog/africa_regen_summit_ii/kalebu_regen.jpeg
new file mode 100644
index 0000000..5ae1aac
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/kalebu_regen.jpeg differ
diff --git a/content/blog/africa_regen_summit_ii/kristof_regen.jpeg b/content/blog/africa_regen_summit_ii/kristof_regen.jpeg
new file mode 100644
index 0000000..1dcdb93
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/kristof_regen.jpeg differ
diff --git a/content/blog/africa_regen_summit_ii/steph_regen.jpeg b/content/blog/africa_regen_summit_ii/steph_regen.jpeg
new file mode 100644
index 0000000..e5d8bd4
Binary files /dev/null and b/content/blog/africa_regen_summit_ii/steph_regen.jpeg differ
diff --git a/content/blog/blog.png b/content/blog/blog.png
new file mode 100644
index 0000000..49e290b
Binary files /dev/null and b/content/blog/blog.png differ
diff --git a/content/blog/tf.png b/content/blog/tf.png
new file mode 100644
index 0000000..0ccade5
Binary files /dev/null and b/content/blog/tf.png differ
diff --git a/content/ecosystem/index.md b/content/ecosystem/index.md
new file mode 100644
index 0000000..74f5d8a
--- /dev/null
+++ b/content/ecosystem/index.md
@@ -0,0 +1,58 @@
+---
+title: "Solutions"
+description: "ThreeFold's Solutions." # quotation marks to allow colons where used
+template: "layouts/solutions.html"
+insert_anchor_links: "left"
+extra:
+ author: Your name here
+ imgPath: about/about_hero.png
+---
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/content/footer/_index.md b/content/footer/_index.md
new file mode 100644
index 0000000..5712cbc
--- /dev/null
+++ b/content/footer/_index.md
@@ -0,0 +1,61 @@
+---
+title: "Footer"
+description: ""
+insert_anchor_links: "left"
+template: "partials/footer.html"
+extra:
+ logoPath: "images/new_logo_tft.png"
+ socialLinks: { Twitter: "https://twitter.com/threefold_io", Telegram: "https://t.me/threefoldnews", Github: "https://github.com/threefoldfoundation", Github2: "https://github.com/threefoldtech"}
+---
+
+{% row(style="lean") %}
+
+##### TAKE ACTION
+
+
+
+###### [Learn](https://docs.threefold.io/docs/introduction)
+
+###### [Host (Farm)](https://docs.threefold.io/docs/category/become-a-farmer)
+
+###### [Dashboard](https://dashboard.grid.tf/)
+
+###### [Download TF Connect: iOS](https://apps.apple.com/us/app/3bot-login/id1459845885)
+
+###### [Download TF Connect: Android](https://play.google.com/store/apps/details?id=org.jimber.threebotlogin&hl=en_US)
+
+|||
+
+##### COMMUNITY
+
+
+
+###### [Main Chat](https://t.me/threefold)
+
+###### [Hosting / Farming Chat](https://t.me/threefoldfarmers)
+
+###### [Grid User Chat](https://t.me/threefoldtesting)
+
+###### [Forum](https://forum.threefold.io/)
+
+###### [Support](https://threefoldfaq.crisp.help/en/)
+
+|||
+
+##### ABOUT US
+
+
+
+
+
+
+
+{% end %}
\ No newline at end of file
diff --git a/content/header/_index_copy.md b/content/header/_index_copy.md
new file mode 100644
index 0000000..529b5ea
--- /dev/null
+++ b/content/header/_index_copy.md
@@ -0,0 +1,84 @@
+---
+title: "Header"
+description: "NEAR is on a mission to empower everyone to take back control of their money, their data, and their identity. Join us."
+insert_anchor_links: "left"
+template: "partials/header.html"
+extra:
+ logoPath: "images/ourworld_logo2.png"
+ imgPath: ""
+---
+
+- Learn
+
+{% row(style="lean") %}
+
+### PURPOSE
+
+
+
+
+#### [The Internot](/apage)
+
+Whats wrong with the [internet](/apage)
+
+
+
+#### Our Internet
+
+Vision for the new internet
+
+|||
+
+### ECOSYSTEM
+
+
+
+
+#### OurWorld DAO
+
+Be a part of governance
+
+
+
+#### Communities
+
+Explore communities in OurWorld
+
+
+
+#### DAOs
+
+Decentralized autonomous organizations
+
+|||
+
+### APPLICATIONS
+
+
+
+
+#### DAPPs
+
+Decentralized applications
+
+
+
+#### Projects
+
+Projects in OurWorld
+
+|||
+
+### FEATURED
+
+
+
+
+#### OurWorld is Live
+
+Be a part of the new internet
+
+- [Join us]("/join-us")
+- [Blog]("/blog")
+
+{% end %}
diff --git a/content/header/index.md b/content/header/index.md
new file mode 100644
index 0000000..3cd56c8
--- /dev/null
+++ b/content/header/index.md
@@ -0,0 +1,59 @@
+---
+title: "Header"
+insert_anchor_links: "left"
+template: "partials/header.html"
+extra:
+ logoPath: "images/new_logo_tft.png"
+
+---
+
+- [Vision]("/why")
+- [Features]("/what")
+- [Concept]("/initiatives")
+- [Virtual City]("/action")
+- Info
+
+
+{% row() %}
+
+
+
+|||
+
+
+
+|||
+
+
+
+|||
+
+
+
+
+
+{% end %}
diff --git a/content/home/index.md b/content/home/index.md
new file mode 100644
index 0000000..6094697
--- /dev/null
+++ b/content/home/index.md
@@ -0,0 +1,345 @@
+---
+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."
+insert_anchor_links: "left"
+extra:
+ author: ThreeFold
+ imgPath: home/tf.png
+---
+
+
+
+
+
+
+
+
+
+
+{% row(style=" center header margin") %}
+
+
+
+# **Self-Healing Data, Network, and Cloud Platform**
+
+Imagine a system which can scale to a planetary level, is compatible with AI, Cloud, Web2, Web3 and Edge IT workloads, has the potential to recover from unforeseen events, capable to provide 100% uptime, and allows any machine and human to communicate over the shortest, most direct path.
+
+
+
+
+
+
+|||
+
+
+
+{% end %}
+
+
+
+
+
+
+
+
+
+
+{% grid_stats() %}
+
+
+#### LIVE AND OPERATIONAL
+
+
+## **Proven by a global community**
+
+
+With ThreeFold, individuals, organizations, communities, countries, and network states deploy their own sovereign infrastructure. Our Proof of Concept Network with 50,000 vCPUs is live and operational.
+
+**Version 3.14 is live on Mainnet**
+
+
+{% end %}
+
+
+
+
+
+
+
+
+
+
+
+
+{% row( style="mtop center between ") %}
+
+#### THREEFOLD DIFFERENCE
+
+## **A ground-up approach**
+
+ThreeFold is not a protocol. We've developed foundational technology that runs directly on bare metal (the hardware). ThreeFold is likely the only active project with a truly scalable solution addressing the Internet and Cloud's core bottlenecks: data, cloud, and network.
+
+
+
+
+
+{% end %}
+
+{% row(style="reverse margin") %}
+
+
+
+|||
+
+### **Unbreakable Data**
+
+Data cannot be compromised and always remains private, owned by you. A scalable system, to the planetary level. Can be distributed and stored in ways which are at least 10x more efficient and orders of magnitude more secure and reliable.
+
+### **Autonomous Cloud**
+
+Self-healing and self-driving cloud based on an efficient and secure operating system runs directly on the hardware. Can run any Web 2, Web 3, or AI workload at the edge of the Internet, with more scalability and reliability.
+
+### **P2P Network**
+
+End-to-end encrypted overlay network, always looking for the shortest possible path between participants. Logical Internet address securely linked to a private key. Unlimited scale and performance optimizations.
+
+{% end %}
+
+
+
+
+
+## **Collaboration, Innovation, Evolution**
+
+ThreeFold’s technological infrastructure will empower many projects and initiatives across sectors. Here are two key projects.
+
+{% end %}
+
+
+{% row( style="semiNarrow mbottom") %}
+
+
+
+#### **OurWorld Free Zone**
+
+
+
+ThreeFold is working with the Zanzibar Communication Corporation (ZICTIA), on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all. The announcement was made August 2023, and progress has been ongoing behind the scenes since then. Updates expected Q4 2024.
+
+
+
+
+
+#### **Tanzanian Sovereign Internet**
+
+
+
+In January 2024, ThreeFold announced in collaboration with The ICT Commission of Tanzania and Holochain a collaboration to deploy sovereign Internet in Tanzania, along with the introduction of coding academies and innovation hubs. The Dunia Yetu cooperative is being set up and efforts will ramp up in 2025.
+
+
+
+
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="margin") %}
+
+
+
+
+
+|||
+
+
+#### THE NEXT CHAPTER
+
+## **Ready for commercialization**
+
+For years, ThreeFold has been quietly and steadily developing its innovative technology, with a solid foundation of mature infrastructure that is now ready to take the next leap forward.
+
+
+
+We are currently fundraising for the next stage of our project – major commercial expansion. This will involve the launch of the $INCA token on the Solana blockchain. If you are interested in learning more or taking part, please reach out.
+
+
+
+
+
+{% end %}
+
+
+
+
+
+[](/blog/ground-up-innovations/)
+
+
+
+
+##### From the ground up: Three inventions that make ThreeFold possible
+
+
+
+|||
+
+[](/blog/evolution-of-the-internet)
+
+
+
+##### The Evolution of the Internet: From free to controlled, and back again
+
+|||
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/content/newsroom/314_upgrade/314_upgrade.png b/content/newsroom/314_upgrade/314_upgrade.png
new file mode 100644
index 0000000..69171bd
Binary files /dev/null and b/content/newsroom/314_upgrade/314_upgrade.png differ
diff --git a/content/newsroom/314_upgrade/314_upgrade1.png b/content/newsroom/314_upgrade/314_upgrade1.png
new file mode 100644
index 0000000..5825a52
Binary files /dev/null and b/content/newsroom/314_upgrade/314_upgrade1.png differ
diff --git a/content/newsroom/314_upgrade/index.md b/content/newsroom/314_upgrade/index.md
new file mode 100644
index 0000000..394e877
--- /dev/null
+++ b/content/newsroom/314_upgrade/index.md
@@ -0,0 +1,20 @@
+---
+id: 314_upgrade
+title: TF Grid Mainnet Upgraded to V3.14
+image_caption: 314_upgrade
+description: TF Grid 3.14 is now on Mainnet. To know more click here.
+date: 2024-07-16
+taxonomies:
+ people: [bernadette_amanda_caster]
+ tags: [tech,grid,community]
+ news-category: [tech,grid,community]
+extra:
+ imgPath: 314_upgrade1.png
+---
+
+TF Grid 3.14 is now on Mainnet. This release is focused on stability and reliability and includes improvements and upgrades to Zero OS, TF Chain, Grid-Proxy, Farmerbot, Pulumi, and SDK-Go. Find the details [here](https://forum.threefold.io/t/gep-tf-grid-mainnet-release-3-14/4372).
+
+
+
+This upgrade requires an update of the Farmerbot to version 0.15.10. For instructions on how to update the Farmerbot, please see our [forum post](https://forum.threefold.io/t/farmerbot-update-required-for-grid-3-14/4388).
+
diff --git a/content/newsroom/_index.md b/content/newsroom/_index.md
new file mode 100644
index 0000000..1c83d60
--- /dev/null
+++ b/content/newsroom/_index.md
@@ -0,0 +1,18 @@
+---
+title: "News"
+paginate_by: 9
+description: "Check the latest updates on how we are building a more open, decentralized, and scalable internet for everyone." # quotation marks to allow
+# paginate_reversed: false
+
+sort_by: "date"
+insert_anchor_links: "left"
+#base_url: "posts"
+#first: "first"
+#last: "last"
+template: "layouts/newsroom.html"
+page_template: "newsPage.html"
+#transparent: true
+generate_feed: true
+extra:
+ imgPath: newsroom.png
+---
\ No newline at end of file
diff --git a/content/newsroom/newsroom.png b/content/newsroom/newsroom.png
new file mode 100644
index 0000000..b967091
Binary files /dev/null and b/content/newsroom/newsroom.png differ
diff --git a/content/partners/our_world_free_zone/freezone.png b/content/partners/our_world_free_zone/freezone.png
new file mode 100644
index 0000000..2c3c299
Binary files /dev/null and b/content/partners/our_world_free_zone/freezone.png differ
diff --git a/content/partners/our_world_free_zone/freezonecover.png b/content/partners/our_world_free_zone/freezonecover.png
new file mode 100644
index 0000000..6b2a0d8
Binary files /dev/null and b/content/partners/our_world_free_zone/freezonecover.png differ
diff --git a/content/partners/our_world_free_zone/freezonecover2.png b/content/partners/our_world_free_zone/freezonecover2.png
new file mode 100644
index 0000000..c3d2b97
Binary files /dev/null and b/content/partners/our_world_free_zone/freezonecover2.png differ
diff --git a/content/partners/our_world_free_zone/freezonelogo.png b/content/partners/our_world_free_zone/freezonelogo.png
new file mode 100644
index 0000000..7e09e67
Binary files /dev/null and b/content/partners/our_world_free_zone/freezonelogo.png differ
diff --git a/content/partners/our_world_free_zone/index.md b/content/partners/our_world_free_zone/index.md
new file mode 100644
index 0000000..2c0a6d7
--- /dev/null
+++ b/content/partners/our_world_free_zone/index.md
@@ -0,0 +1,52 @@
+---
+id: our_world_free_zone
+title: Our World Free Zone
+description: ThreeFold is working with ZICTIA, on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all.
+template: partnerPage.html
+taxonomies:
+ partners-category: [foundation]
+ tags: []
+date: 2024-03-19
+extra:
+ countries: [Global]
+ cities: []
+ rank: 1
+ imgPath: freezonecover2.png
+ image_caption: Our World Free Zone
+ partner_logo: freezonelogo.png
+ websites: https://freezone.ourworld.tf/
+ private: 0
+---
+
+
+
+### **A Sovereign Economic Zone**
+
+Imagine if an entrepreneur, digital nomad, or any organization could obtain a digital company license, a bank account supporting both fiat and cryptocurrencies, and handle their legal requirements and taxes – all within a single streamlined platform. ThreeFold technology will be leveraged to enable just that within the world’s first 100% digital free zone – accessible and affordable for all.
+
+
+
+The government of Zanzibar is undertaking several initiatives to shift its economy from being largely dependent on tourism to embracing the IT sector. As part of this vision they have partnered with ThreeFold via [ZICTIA](https://zictia.go.tz/), the Zanzibar ICT Infrastructure Agency, to create the world’s first digital free zone.
+
+
+
+This collaboration was formally announced by Zanzibar’s President, Dr. Hussein Ali Mwinyi, at ThreeFold’s Africa Regenerative Future Summit in July 2023 which brought together a group of passionate entrepreneurs and actors working on innovative planet-first projects in Africa. The president promised to establish the digital free zone from a regulatory perspective, with the goal of developing local skills, bringing about major changes in the ICT sector, and creating job opportunities to increase the nation’s income.
+
+
+
+
+
+
+
+
+
+As the world’s first digital free zone, this special economic zone will be supported by ThreeFold’s innovative tech stack. Merging traditional business structures with groundbreaking technology, the free zone will be a pioneering hub for business, fostering an ecosystem that is adaptive, resilient, and conducive to growth. It will be one of the first environments where Decentralized Autonomous Organizations (DAOs) can be legally established and operated. Some of the ThreeFold team is based in Zanzibar and working to make the free zone live by the end of 2024.
+
+
+
+ThreeFold’s latest technology, which is currently being fine tuned, the Digital Twin, will also be launched as part of the Free Zone membership. The Digital Free Zone (DFZ) Digital Twin application provides a centralized interface for accessing all free zone features and users will own 100% of the data and digital capabilities. You can be among the first to embark on the OurWorld Digital Free Zone journey.
+
+### **News Coverage**
+
+- [The Citizen](https://www.thecitizen.co.tz/tanzania/zanzibar/zanzibar-seeks-to-become-digital-freezone--4316150)
+- [Daily News Tanzania](https://dailynews.co.tz/mwinyi-commits-to-improvement-of-digital-spaces/)
\ No newline at end of file
diff --git a/content/partners/sikana/index.md b/content/partners/sikana/index.md
new file mode 100644
index 0000000..22a5aac
--- /dev/null
+++ b/content/partners/sikana/index.md
@@ -0,0 +1,46 @@
+---
+id: sikana
+title: Sikana
+description: Sikana is on a mission to empower individuals with practical skills through free educational videos – local content in local languages on top of local infrastructure.
+template: partnerPage.html
+taxonomies:
+ partners-category: [foundation]
+ tags: []
+date: 2024-03-19
+extra:
+ countries: [Global]
+ cities: []
+ rank: 1
+ imgPath: sikana.png
+ image_caption: sikana
+ partner_logo: sikana_logo.png
+ websites: https://www.sikana.tv/en
+ private: 0
+---
+
+
+
+### **Education for all**
+
+Sikana is a non-profit organization on a mission to empower individuals with practical skills through free educational video programs. Targeting the 3+ billion people around the world with access to screens they have so far delivered over 400,000,000 online video lessons. Some of the projects they have been involved in include facilitating access to energy and fighting against energy poverty in the Ivory Coast, helping to save biodiversity in France and empowering women with vocational training at sewing schools in India.
+
+
+
+
+
+
+
+
+However, the incredible scale of this inspirational project comes with significant hosting fees, inhibiting Sikana’s ability to equip people and communities around the world with new knowledge and skills. It was at this point in Sikana’s journey that co-founders Florian Fournier and Grégory Flipo met the ThreeFold team. We shared the same vision of making education accessible and creating a more equitable and greener world, sparking an exciting partnership between ThreeFold and Sikana, and bringing Florian and Gregory onto the team.
+
+
+
+ThreeFold’s decentralized grid can step in as the solution to these immense hosting costs allowing Sikana to extend its global reach and helping even more communities around the world. Together, we are working to create and provide local content in local languages on top of local infrastructure, fulfilling the goal of making education accessible to everyone.
+
+
+
+You can help us on this mission by either creating educational content which will be disseminated on top of the ThreeFold Grid or you can help create the necessary capacity to host these educational programs. Hosting a node can mean hosting someone’s education. Learn more about [Sikana](https://www.sikana.tv/en) and how to host this impactful organization [here](https://www.threefold.io/host/).
+
+
+
+
diff --git a/content/partners/sikana/sikana.png b/content/partners/sikana/sikana.png
new file mode 100644
index 0000000..6b71818
Binary files /dev/null and b/content/partners/sikana/sikana.png differ
diff --git a/content/partners/sikana/sikana2.png b/content/partners/sikana/sikana2.png
new file mode 100644
index 0000000..5030290
Binary files /dev/null and b/content/partners/sikana/sikana2.png differ
diff --git a/content/partners/sikana/sikana_logo.png b/content/partners/sikana/sikana_logo.png
new file mode 100644
index 0000000..2a86306
Binary files /dev/null and b/content/partners/sikana/sikana_logo.png differ
diff --git a/content/partners/social_network/index.md b/content/partners/social_network/index.md
new file mode 100644
index 0000000..b9d2a1a
--- /dev/null
+++ b/content/partners/social_network/index.md
@@ -0,0 +1,45 @@
+---
+id: social_network
+title: Social Network
+description: Earth Staking’s Social Network is the first Bitcoin Staking Layer 2 on Earth, collaborating with ThreeFold to improve security, scalability, and energy-efficiency.
+template: partnerPage.html
+taxonomies:
+ partners-category: [foundation]
+ tags: []
+date: 2024-03-19
+extra:
+ countries: [Global]
+ cities: []
+ rank: 1
+ imgPath: social_network_cover.png
+ image_caption: Social Network
+ partner_logo: social_network_logo.png
+ websites: https://www.social.network/en
+ private: 0
+---
+
+
+
+### **Scaling Bitcoin**
+Earth Staking’s Social Network is the first Bitcoin Staking Layer 2 on Earth, designed to provide users with a more cost-effective, efficient and eco-friendly experience. Their mission is to decentralize scaling solutions for Bitcoin and create social networks that prioritize the well-being of Earth and its inhabitants. Having jointly identified challenges currently confronting Bitcoin and its alternatives, ThreeFold and Social Network have partnered together to improve the accessibility, security, scalability, reliability and energy efficiency of the Bitcoin Network.
+
+
+
+
+
+
+
+
+
+Social Network will be integrated with and enhanced by ThreeFold technologies. This includes, but is not limited to, ThreeFold’s decentralized cloud – featuring Quantum Safe Storage and the Mycelium Network – as well as decentralized computation, and Zero OS. ThreeFold's infrastructure provides the ideal backbone for Earth Staking's ambitions, offering a robust, low-level decentralized framework perfectly suited to empower its vision.
+
+
+
+The partnership is also focused on advancing the development of cross-chain communication technology for Bitcoin, Ethereum, and others – enhancing scale, security, ease of use, and energy efficiency. To this end, ThreeFold and Earth Staking will look to create a seamless, frictionless, easy-to-use EarthWallet and node with built-in BTC Staking, ETH Light, and Nostr functionalities.
+
+
+
+Our partnership agreement was formalized in January 2024 and we are now in the process of technical implementation.
+
+
+
diff --git a/content/partners/social_network/social_network.png b/content/partners/social_network/social_network.png
new file mode 100644
index 0000000..b70e6fb
Binary files /dev/null and b/content/partners/social_network/social_network.png differ
diff --git a/content/partners/social_network/social_network_cover.png b/content/partners/social_network/social_network_cover.png
new file mode 100644
index 0000000..6567e4d
Binary files /dev/null and b/content/partners/social_network/social_network_cover.png differ
diff --git a/content/partners/social_network/social_network_logo.png b/content/partners/social_network/social_network_logo.png
new file mode 100644
index 0000000..aa87cd3
Binary files /dev/null and b/content/partners/social_network/social_network_logo.png differ
diff --git a/content/partners/tanzania_sovereign_internet/index.md b/content/partners/tanzania_sovereign_internet/index.md
new file mode 100644
index 0000000..e3487d2
--- /dev/null
+++ b/content/partners/tanzania_sovereign_internet/index.md
@@ -0,0 +1,61 @@
+---
+id: tanzania_sovereign_internet
+title: Tanzania's Sovereign Internet
+description: In collaboration with the ICT Commission of Tanzania and the tech community of Dar Es Salaam, ThreeFold is enabling a better digital way forward for Tanzania.
+template: partnerPage.html
+taxonomies:
+ partners-category: [foundation]
+ tags: []
+date: 2024-03-19
+extra:
+ countries: [Global]
+ cities: []
+ rank: 1
+ imgPath: tanzania_sovereign_internet_cover.png
+ image_caption: Tanzania Sovereign Internet
+ partner_logo: tanzania_sovereign_internet_logo.png
+ websites:
+ private: 0
+---
+
+
+
+### **A Sovereign Internet, By and For Tanzania**
+The current centralized Internet model works for the few and is GDP negative for most countries. Most nations do not own their Internet, instead with fiber optic cables transferring and storing their data in data centers in the Global North. A relatively small set of big companies have access to and control over the data of billions of citizens, making us a product. The result is a loss of national money, data, sovereignty and influence.
+
+
+
+Our feasibility study showed that Tanzania is losing around 10 Billion USD per year from not having their own infrastructure and applications. The current centralized model needs to change.
+
+
+
+**Centralized model vs ThreeFold model**
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Tanzania shares this vision and together with ThreeFold has embarked on a mission to build their own sovereign Internet infrastructure where the people are in control and are the ones benefiting from their own digital lives. To achieve this mission, Tanzania’s ICT Commission has partnered with us to leverage ThreeFold technology to enable a Tanzanian-owned Internet infrastructure and allow local communities to build the digital solutions that they need and want on top of the grid.
+
+
+
+ThreeFold’s unique technology is ideal for this transformative project because of its affordability, efficiency, accessibility, reliability, security, sustainability and ability to be co-owned. By focusing on everyone owning and running things together, an autonomous digital future shaped by the community will become a reality. It will be a Tanzanian internet designed by and for the people.
+
+
+
+The project “Dunia Yetu”, meaning Our World in Swahili, was announced in January 2024 at a conference in Dar Es Salaam organized by ThreeFold and Tanzania’s ICT Commission. The next steps which the team is currently working on include helping local communities to deploy nodes across Dar es Salaam as well as opening a coworking hub. This hub will empower startups and entrepreneurs in Dar es Salaam to learn more about the ThreeFold grid and focus on knowledge sharing to help them build their own digital solutions on top of the grid. Learn more about Tanzania’s new internet [here](https://www.threefold.io/blog/dunia-yetu/).
+
+
+
+
+
diff --git a/content/partners/tanzania_sovereign_internet/tanzania_sovereign_internet_cover.png b/content/partners/tanzania_sovereign_internet/tanzania_sovereign_internet_cover.png
new file mode 100644
index 0000000..a7ee532
Binary files /dev/null and b/content/partners/tanzania_sovereign_internet/tanzania_sovereign_internet_cover.png differ
diff --git a/content/partners/tanzania_sovereign_internet/tanzania_sovereign_internet_logo.png b/content/partners/tanzania_sovereign_internet/tanzania_sovereign_internet_logo.png
new file mode 100644
index 0000000..3e2e55b
Binary files /dev/null and b/content/partners/tanzania_sovereign_internet/tanzania_sovereign_internet_logo.png differ
diff --git a/content/partners/tanzania_sovereign_internet/threefold_internet.jpeg b/content/partners/tanzania_sovereign_internet/threefold_internet.jpeg
new file mode 100644
index 0000000..ef5f900
Binary files /dev/null and b/content/partners/tanzania_sovereign_internet/threefold_internet.jpeg differ
diff --git a/content/partners/tanzania_sovereign_internet/todays_internet.png b/content/partners/tanzania_sovereign_internet/todays_internet.png
new file mode 100644
index 0000000..7ab041f
Binary files /dev/null and b/content/partners/tanzania_sovereign_internet/todays_internet.png differ
diff --git a/content/partners/utilities_heder.png b/content/partners/utilities_heder.png
new file mode 100644
index 0000000..2c7afed
Binary files /dev/null and b/content/partners/utilities_heder.png differ
diff --git a/content/partners/veverse/index.md b/content/partners/veverse/index.md
new file mode 100644
index 0000000..0878f4c
--- /dev/null
+++ b/content/partners/veverse/index.md
@@ -0,0 +1,44 @@
+---
+id: veverse
+title: VeVerse
+description: VeVerse, a strong believer in a decentralized metaverse, is creating a virtual universe which eradicates cultural boundaries and supports the free flow of ideas and knowledge.
+template: partnerPage.html
+taxonomies:
+ partners-category: [foundation]
+ tags: []
+date: 2024-03-19
+extra:
+ countries: [Global]
+ cities: []
+ rank: 1
+ imgPath: veverse_cover.png
+ image_caption: Veverse
+ partner_logo: veverse_logo.png
+ websites: https://veverse.com/
+ private: 0
+---
+
+
+
+### **A Metaverse eradicating cultural boundaries**
+
+VeVerse aims to create a virtual universe which eradicates cultural boundaries and supports the free flow of ideas and knowledge. The vision is to provide a metaverse platform which bridges virtual worlds, digital assets and communities and to empower museums, artists and game developers to construct captivating environments together where users can play, explore and connect.
+
+
+
+One of the critical moments which inspired this project was when VeVerse’s founder, Vasily Gnuchev, traveled to Egypt. In his own words “experiencing the rich history and art of this ancient civilization firsthand, I became even more determined to create a platform where such wonders could be shared with people worldwide.” It was on this trip Vasily met ThreeFold co-founder Kristof De Spiegeleer, who shared a passion for art and decentralization and whose encouragement played a crucial role in propelling VeVerse’s first project, Artheon, forward. Artheon is a virtual museum which breaks down cultural barriers by providing global access to artistic masterpieces. Check out this fascinating project [here](https://artheon3d.veverse.com/) and visualize it in the video below.
+
+
+
+
+
+
+
+
+
+One of the problems facing VeVerse, and all other metaverse products in existence, is the inadequate computational and connectivity infrastructure available today. Current infrastructure lacks the speed and capacity to power such expansive digital experiences. Latency levels are also significantly higher than the almost zero latency requirements of metaverse data being stored in close proximity to users. Edge computing emerges as a vital solution to realizing the metaverse, offering decentralized local data storage hardware that drastically reduces latency by storing data closer to users. This is where ThreeFold steps in as a pivotal player, offering the largest decentralized grid globally, equipped with edge cloud and computing capabilities essential for powering the metaverse's future. The partnership between ThreeFold and VeVerse will help bring cultural artworks and historical artifacts to billions. Help host this innovative solution by expanding ThreeFold’s cloud capacity.
+
+
+
+
+
diff --git a/content/partners/veverse/veverse.png b/content/partners/veverse/veverse.png
new file mode 100644
index 0000000..0734321
Binary files /dev/null and b/content/partners/veverse/veverse.png differ
diff --git a/content/partners/veverse/veverse_cover.png b/content/partners/veverse/veverse_cover.png
new file mode 100644
index 0000000..9acadbb
Binary files /dev/null and b/content/partners/veverse/veverse_cover.png differ
diff --git a/content/partners/veverse/veverse_logo.png b/content/partners/veverse/veverse_logo.png
new file mode 100644
index 0000000..7709892
Binary files /dev/null and b/content/partners/veverse/veverse_logo.png differ
diff --git a/content/partners/vverse/index.md b/content/partners/vverse/index.md
new file mode 100644
index 0000000..d424a34
--- /dev/null
+++ b/content/partners/vverse/index.md
@@ -0,0 +1,45 @@
+---
+id: vverse
+title: VVerse
+description: VVerse offers a cutting-edge platform for virtual socializing and entertainment – benefiting from ThreeFold's scalable infrastructure to provide a smooth experience for all.
+template: partnerPage.html
+taxonomies:
+ partners-category: [foundation]
+ tags: []
+date: 2024-03-19
+extra:
+ countries: [Global]
+ cities: []
+ rank: 1
+ imgPath: vverse_cover.png
+ image_caption: Veverse
+ partner_logo: vverse_logo.png
+ websites: https://www.vverse.co/explore?tag=
+ private: 0
+---
+
+
+
+### **A cutting-edge Metaverse platform**
+
+VVerse offers a cutting-edge platform for virtual socializing and entertainment. One of their first products is [VinDo](https://www.vindo.ai/), the next generation communication and business tool to streamline your interactions, empower your business, simplify your workflow and amplify your results. Businesses can become virtual with VinDO and redefine customer experiences in the metaverse. Checkout the video below to see this metaverse in action.
+
+
+
+
*/
+ @apply text-lg;
+}
+
+pre,
+code {
+ font-feature-settings: normal;
+}
+
+.navWhite,
+.navWhite:visited {
+ @apply text-white;
+}
+
+.navWhite:focus,
+.navWhite:active {
+ @apply text-gray-400;
+}
+
+.text-blue-light {
+ @apply text-gray-500;
+}
+
+ /*.text-blue-dark {
+ /* for dark mode
+ @apply text-blue-200;
+
+}*/
+
+.text-shadow-titles {
+ text-shadow: 4px 4px 2px #000;
+}
+
+.gradient-titles {
+ @apply bg-gradient-to-b from-blue-700 to-black;
+}
+
+.ctr {
+ @apply text-center;
+}
+
+.legal {
+ @apply text-xs;
+}
+
+nav h4 a:hover {
+ @apply border-0 text-blue-300 font-light;
+}
+nav h4 a,
+nav h4 a:focus,
+nav h4 a:active {
+ @apply border-0 text-black font-light;
+}
+
+a h2 {
+ @apply text-black;
+}
+
+a {
+ @apply text-blue-600 font-semibold;
+}
+a:focus,
+a:hover {
+ @apply text-blue-300;
+}
+a:active {
+ @apply text-blue-800 border-blue-500;
+}
+
+h5 a {
+ @apply text-gray-200 font-normal;
+}
+
+/*
+a:hover {
+ @apply dark:text-blue-300;
+}
+*/
+
+sup a,
+a.previous,
+a.next,
+.footnote-return {
+ @apply border-b-0;
+}
+
+#nav-toggle:checked + #navMenu {
+ @apply block;
+}
+
+a.navborderless {
+ @apply border-b-0;
+}
+/*
+.dateInfo {
+ @apply text-gray-700 dark:text-gray-400;
+}
+*/
+
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3,
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+ @apply font-sans leading-tight tracking-tight;
+}
+
+h1,
+.h1 {
+ @apply text-4xl mb-4 font-extrabold;
+}
+
+h2,
+.h2,
+h3,
+.h3,
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+ @apply font-bold;
+}
+
+h2,
+.h2 {
+ @apply text-4xl;
+}
+
+h4,
+.h4 {
+ @apply text-2xl;
+}
+
+h5 {
+ @apply not-italic;
+}
+
+h5,
+.h5,
+h6,
+.h6 {
+ @apply text-lg;
+}
+
+.height-hero {
+ height: 45vh;
+ max-height: 45vh;
+ overflow: hidden;
+}
+
+.height-post {
+ height: 35vh;
+ max-height: 35vh;
+}
+
+.imgCover {
+ @apply object-cover object-center h-full w-full;
+}
+
+.background-hero-image-div {
+ @apply relative overflow-hidden w-full bg-black;
+ /* Have to allow for mobile browsers' own "chrome"; can't go by Inspector simulations of smaller breakpoints */
+ height: 80vh;
+ max-height: 80vh;
+}
+
+.background-hero-title-block-fit {
+ @apply block w-full absolute bottom-0 px-4 pt-3 pb-6 bg-gradient-to-t from-black;
+}
+
+.background-hero-title-text {
+ text-shadow: 4px 4px 2px #000;
+}
+
+@media screen and (min-width: 768px) {
+ .background-hero-title-block-fit {
+ @apply px-12;
+ }
+
+ .background-hero-image-div {
+ height: 85vh;
+ max-height: 85vh;
+ }
+}
+
+@media screen and (min-width: 1024px) {
+ .background-hero-title-block-fit {
+ @apply px-16;
+ }
+
+ .background-hero-image-div {
+ height: 95vh;
+ max-height: 95vh;
+ }
+}
+
+.text-nowrap,
+.text-nobrk {
+ @apply whitespace-nowrap;
+}
+
+article h1,
+article h2,
+article h3,
+article h4 {
+ @apply tracking-tight mt-8 mb-6;
+}
+
+article p {
+ @apply text-lg leading-relaxed;
+}
+
+article img.containedImage {
+ min-width: 100%;
+ max-width: 100%;
+ @apply w-full h-auto;
+}
+
+@media screen and (min-width: 768px) {
+ .height-hero {
+ height: 70vh;
+ max-height: 70vh;
+ }
+
+ .height-post {
+ height: 40vh;
+ max-height: 40vh;
+ }
+}
+
+@media screen and (min-width: 768px) {
+ article p {
+ @apply text-xl leading-relaxed;
+ }
+}
+
+@media screen and (min-width: 1920px) {
+ article p {
+ @apply text-2xl leading-relaxed;
+ }
+}
+/*
+.yellowBox {
+ @apply font-sans bg-yellow-200 border border-gray-900 border-solid mx-auto my-2 w-full px-6 py-2 dark:bg-gray-800 dark:border-gray-500;
+}
+*/
+
+.yellowbox p {
+ @apply w-full p-2 m-0;
+}
+
+ul,
+ol {
+ @apply pl-8;
+}
+
+ul {
+ @apply list-disc;
+}
+
+ol {
+ @apply list-decimal;
+}
+
+.twitter-tweet {
+ @apply mt-4 mx-auto mb-0;
+}
+
+table.leagues {
+ @apply w-11/12 mt-4 mx-auto mb-0 border-0 border-collapse;
+}
+
+table.leagues td.col {
+ @apply w-1/2;
+}
+
+@media (min-width: 900px) {
+ table.leagues {
+ @apply w-3/5;
+ }
+ table.noborders {
+ @apply w-11/12;
+ }
+}
+
+table.noborders {
+ @apply w-full border-0 border-collapse mt-6 mx-auto mb-4;
+}
+
+table.noborders td {
+ @apply text-gray-800 text-left align-middle py-1 pr-0 pl-2;
+ /* text-align: left !important; */
+}
+
+table.noborders td img {
+ @apply inline-block align-middle m-0;
+}
+
+table.noborders tr {
+ @apply bg-blue-100;
+}
+
+table.noborders tr:nth-child(even) {
+ @apply bg-gray-200;
+}
+
+table.noborders thead tr {
+ @apply bg-blue-700;
+}
+
+table.noborders thead td {
+ @apply text-white font-bold;
+}
+
+table.noborders td.td70 {
+ width: 70%;
+}
+table.noborders td.td70 img {
+ @apply block w-1/2 h-auto;
+ max-width: 50%;
+}
+
+table.noborders td.td30 {
+ width: 30%;
+}
+/*
+blockquote {
+ @apply px-6 text-gray-700 dark:text-gray-400;
+}
+*/
+
+/* start, footnotes */
+
+.footnote-definition,
+.footnote-reference {
+ @apply font-sans;
+}
+
+.footnote-reference {
+ font-size: 0.65em;
+ top: -0.5em;
+}
+
+.footnote-sim {
+ font-size: 0.65em;
+ color: #0000ff;
+ @media (prefers-color-scheme: dark) {
+ color: #00aaff;
+ }
+}
+
+.footnotes {
+ & ol {
+ padding-inline-start: 1.5rem;
+ }
+ & ol li {
+ margin-bottom: 0.5rem;
+ font-size: 75%;
+ }
+ & li p {
+ font-size: 100%;
+ line-height: 1.4;
+ }
+ & .footnote-backref {
+ font-size: 75%;
+ }
+}
+
+a.footnote-return {
+ font-size: 50%;
+}
+
+article > .footnote-definition {
+ border-top: 1px solid black;
+ padding-top: 1em;
+ margin-top: 1em;
+}
+
+article > .footnote-definition ~ .footnote-definition {
+ border-top: 0;
+ padding-top: 0;
+ margin-top: 0;
+}
+
+.footnote-definition-label {
+ top: -0.4em;
+ font-size: 0.65em;
+}
+
+.footnote-definition-label + p {
+ font-size: 75%;
+ margin-top: -1.75em;
+ margin-left: 1em;
+ line-height: 1.35;
+}
+
+.footnote-definition-label::after {
+ content: ".";
+}
+
+/* == end, footnotes */
+
+.aspect-16x9 {
+ padding-bottom: 56.25%;
+}
+/*
+hr {
+ @apply border-solid border-gray-900 dark:border-gray-100;
+}
+*/
+
+footer {
+ @apply font-sans;
+}
+
+.lazypicturecaption {
+ @apply text-sm p-0 mt-2 leading-snug text-center;
+}
+
+.home-colOne p {
+ @apply leading-8 mb-4;
+}
+
+.home-colOne img {
+ @apply my-4;
+}
+
+.container-comments {
+ margin: 0 auto;
+ font-size: 85%;
+ width: 85%;
+ max-width: 720px !important;
+ margin-bottom: 0;
+}
+
+@media screen and (min-width: 900px) {
+ .container-comments {
+ width: 40%;
+ }
+}
+
+.bg-dark {
+ background: rgb(15,15,15);
+ background: radial-gradient(circle, rgba(15,15,15,1) 0%, rgb(24, 24, 24) 50%, rgba(15,15,15,1) 100%);
+}
\ No newline at end of file
diff --git a/css/nav.css b/css/nav.css
new file mode 100644
index 0000000..e69de29
diff --git a/develop.sh b/develop.sh
new file mode 100755
index 0000000..000503f
--- /dev/null
+++ b/develop.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+set -ex
+
+export BASE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+cd "${BASE}"
+
+
+source env.sh
+
+zola serve
\ No newline at end of file
diff --git a/env.sh b/env.sh
new file mode 100644
index 0000000..770564b
--- /dev/null
+++ b/env.sh
@@ -0,0 +1,136 @@
+export NAME='threefoldio'
+
+SOURCE=${BASH_SOURCE[0]}
+DIR_OF_THIS_SCRIPT="$( dirname "$SOURCE" )"
+export BASE="$( realpath "$DIR_OF_THIS_SCRIPT" )"
+
+mkdir -p $HOME/hero/bin
+
+get_file_size() {
+ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
+ stat -c%s "$1"
+ elif [[ "$OSTYPE" == "darwin"* ]]; then
+ stat -f%z "$1"
+ else
+ echo "Unsupported operating system."
+ exit 1
+ fi
+}
+
+
+# Add ~/hero/bin to PATH
+export PATH="$HOME/hero/bin:$PATH"
+
+
+# Check if tailwindcss exists in ~/hero/bin
+if [[ ! -f "$HOME/hero/bin/tailwindcss" ]]; then
+ echo "tailwindcss not found in ~/hero/bin. Downloading..."
+
+ 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
+
+ pushd /tmp
+ rm -f $ASSET
+ rm -f tailwindcss
+ curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}"
+
+ FILE_SIZE=$(get_file_size "$ASSET")
+ if [[ $FILE_SIZE -lt 20000000 ]]; then
+ echo "Error: Downloaded file size is less than 20MB, download not ok."
+ echo "Download URL was: $ASSET"
+ rm "$ASSET"
+ exit 1
+ fi
+
+ chmod +x $ASSET
+ rm -rf "$HOME/hero/bin/tailwindcss"
+ mv $ASSET "$HOME/hero/bin/tailwindcss"
+
+ popd
+fi
+
+check_zola() {
+ if command -v zola &> /dev/null; then
+ echo "Zola is already installed."
+ return 0
+ else
+ echo "Zola is not installed. Proceeding with installation."
+ return 1
+ fi
+}
+
+# Function to install Zola on Ubuntu
+install_zola_ubuntu() {
+ echo "Installing Zola on Ubuntu..."
+ sudo apt update
+ sudo apt install curl -y
+ ZOLA_DEB=$(curl -s https://api.github.com/repos/getzola/zola/releases/latest | grep "browser_download_url.*_amd64.deb" | cut -d '"' -f 4)
+ curl -LO $ZOLA_DEB
+ sudo dpkg -i $(basename $ZOLA_DEB)
+}
+
+# Function to install Zola on Arch Linux
+install_zola_arch() {
+ echo "Installing Zola on Arch Linux..."
+ sudo pacman -Sy zola
+}
+
+# Function to install Zola on macOS
+install_zola_macos() {
+ echo "Installing Zola on macOS..."
+ if command -v brew &> /dev/null; then
+ brew install zola
+ else
+ echo "Homebrew is not installed. Please install Homebrew first."
+ exit 1
+ fi
+}
+
+if ! check_zola; then
+ # Detect OS and install Zola
+ if [[ "$OSTYPE" == "linux-gnu"* ]]; then
+ if command -v apt &> /dev/null; then
+ install_zola_ubuntu
+ elif command -v pacman &> /dev/null; then
+ install_zola_arch
+ else
+ echo "Unsupported Linux distribution."
+ exit 1
+ fi
+ elif [[ "$OSTYPE" == "darwin"* ]]; then
+ install_zola_macos
+ else
+ echo "Unsupported operating system."
+ exit 1
+ fi
+fi
+
+# Kill any running zola process
+if pgrep zola > /dev/null; then
+ echo "Stopping running zola process..."
+ pkill zola
+fi
+
+# Initialize and configure tailwind if not configured
+echo "Initializing tailwind..."
+if [[ ! -f "tailwind.config.js" ]]; then
+ ~/hero/bin/tailwindcss init
+ sed -i '' "s| content: \\[\\],| content: \\['./templates/**/*.html'\\],|g" tailwind.config.js
+fi
+
+# Compile tailwindcss for prod & build project
+echo "Compiling tailwindcss and building zola project..."
+rm -rf public static/css
+tailwindcss -i css/index.css -o ./static/css/index.css --minify
+
+
diff --git a/format_data.sh b/format_data.sh
new file mode 100644
index 0000000..2d46784
--- /dev/null
+++ b/format_data.sh
@@ -0,0 +1,208 @@
+#/bin/bash
+
+git submodule update --recursive --remote
+
+# readable shorthand for adding tab
+add_tab() {
+ sed -i "" "s|$1| $1|g" "$2"
+}
+
+# readable shorthand for sed replace
+replace() {
+ sed -i "" "s|$1|$2|g" "$3"
+}
+
+# check if certain word exists in a file
+exists() {
+ if grep "$1" $2 > /dev/null
+ then
+ return 0
+ else
+ return 1
+ fi
+}
+
+# move line with a certain word $1
+# below another line with certain word $2
+move_below() {
+ if exists $1 $3; then
+ TARGET="$(grep -n "$1" "$3" | sed -n -e "s/^.*\(\($1\).*\)/\1/p")"
+ LINE_NUM="$(grep -n "$1" "$3" | head -n1 | sed 's/:.*//')"
+ sed -i "" "${LINE_NUM}d" "$3"
+ LINE_NUM="$(grep -n "$2" "$3" | head -n1 | sed 's/:.*//')"
+ LINE_NUM="$(($LINE_NUM + 1))"
+ sed -a -i "" "${LINE_NUM}i\\
+$TARGET\\
+" "$3"
+ fi
+}
+
+folder_exists() {
+ echo "content/$1/$2"
+ if [ -d "content/$1/$2" ]; then
+ return 0
+ fi
+ return 1
+}
+
+echo "Formatting people..."
+dir="threefold_data/content/person"
+
+for file in $(grep -ril 'name:' $dir);
+do
+ path=${file%/*}
+ name=${path##*/}
+ if folder_exists "people" $name; then
+ continue
+ fi
+
+ sed -i "" "s|private: 1| private: 1\\
+ socialLinks: {\\
+ }|g" "$file"
+ sed -i "" "s|private: 0| private: 0\\
+ socialLinks: {\\
+ }|g" "$file"
+
+ move_below category: excerpt: $file
+ move_below memberships: excerpt: $file
+ move_below websites: socialLinks: $file
+ move_below projects: image: $file
+ move_below linkedin: socialLinks: $file
+ move_below github: linkedin: $file
+ move_below id: excerpt: $file
+
+ # move bio field below toml
+ BIO="$(grep -n 'bio:' "$file" | sed -n -e 's/^.*\(\(bio:\).*\)/\1/p')"
+ LINE_NUM="$(grep -n 'bio:' "$file" | head -n1 | sed 's/:.*//')"
+ sed -i "" "${LINE_NUM}d" "$file"
+ echo "\n$BIO" >> $file
+ sed -i "" "s|bio: ||g" "$file"
+
+ # adds comma after social links
+ WEBSITES="$(grep -n 'websites:' "$file" | sed -n -e 's/^.*\(\(websites:\).*\)/\1/p')"
+ sed -i "" "s|$WEBSITES|$WEBSITES,|g" "$file"
+ LINKEDIN="$(grep -n 'linkedin:' "$file" | sed -n -e 's/^.*\(\(linkedin:\).*\)/\1/p')"
+ sed -i "" "s|$LINKEDIN|$LINKEDIN,|g" "$file"
+ if exists "github" $file; then
+ GITHUB="$(grep -n 'github:' "$file" | sed -n -e 's/^.*\(\(github:\).*\)/\1/p')"
+ sed -i "" "s|$GITHUB|$GITHUB,|g" "$file"
+ fi
+
+ # put id into square brackets for people taxonomy
+ ID="$(grep -n 'id:' "$file" | sed -n -e 's/^.*\(\(id:\).*\)/\1/p')"
+ NAME="${ID#* }"
+ NAME="[$NAME]"
+ sed -i "" "s|$ID|id: $NAME|g" "$file"
+
+ # Change field names
+ replace "category:" "categories:" $file
+ replace "rank:" "weight:" $file
+ replace "excerpt:" "description:" $file
+ replace "name:" "title:" $file
+ replace "linkedin:" "LinkedIn:" $file
+ replace "projects:" "organizations:" $file
+ replace "projects:" "organizations:" $file
+ replace "image: ./" "imgPath: " $file
+
+ sed -i "" "s|imgPath:|extra:\\
+ imgPath:|g" "$file"
+ sed -i "" "s|id:|taxonomies:\\
+ people:|g" "$file"
+
+ add_tab "memberships:" $file
+ add_tab "categories:" $file
+ add_tab "cities:" $file
+ add_tab "countries:" $file
+ add_tab "organizations:" $file
+ add_tab "LinkedIn:" $file
+ add_tab "LinkedIn:" $file
+ add_tab "websites:" $file
+ add_tab "websites:" $file
+ add_tab "github:" $file
+ add_tab "github:" $file
+
+ mv $file ${file%/*}/index.md
+ mv ${file%/*} content/people
+
+ break
+done;
+
+echo "Formatting blogs..."
+dir="threefold_data/content/blog"
+
+for file in $(grep -ril 'authors:' $dir);
+do
+
+ path=${file%/*}
+ name=${path##*/}
+ if folder_exists "blog" $name; then
+ continue
+ fi
+
+ echo $file
+
+ move_below created: excerpt: $file
+ move_below category: authors: $file
+ move_below tags: authors: $file
+ move_below image: category: $file
+
+ # Change field names
+ sed -i "" "s|category:|categories:|g" "$file"
+ sed -i "" "s|created:|date:|g" "$file"
+ sed -i "" "s|excerpt:|description:|g" "$file"
+ sed -i "" "s| ---|---|g" "$file"
+ sed -i "" "s|authors:|taxonomies:\\
+ people:|g" "$file"
+ sed -i "" "s|image: ./|extra:\\
+ imgPath: |g" "$file"
+
+ add_tab "tags" $file
+ add_tab "categories" $file
+
+ mv $file ${file%/*}/index.md
+ mv ${file%/*} content/blog
+
+ break
+done;
+
+echo "Formatting news..."
+dir="threefold_data/content/news"
+
+for file in $(grep -ril 'authors:' $dir);
+do
+
+ path=${file%/*}
+ name=${path##*/}
+ if folder_exists "newsroom" $name; then
+ continue
+ fi
+ echo $file
+
+ move_below created: excerpt: $file
+ move_below category: authors: $file
+ move_below tags: authors: $file
+ move_below image: category: $file
+
+ # Change field names
+ sed -i "" "s|category:|news-category:|g" "$file"
+ sed -i "" "s|created:|date:|g" "$file"
+ sed -i "" "s|excerpt:|description:|g" "$file"
+ sed -i "" "s| ---|---|g" "$file"
+ sed -i "" "s|authors:|taxonomies:\\
+ people:|g" "$file"
+ sed -i "" "s|image: ./|extra:\\
+ imgPath: |g" "$file"
+
+ add_tab "tags" $file
+ add_tab "news-category" $file
+
+ mv $file ${file%/*}/index.md
+ mv ${file%/*} content/newsroom
+
+ break
+done;
+
+#
+# mickey malul people taxonomy should be mickey_malul
+# kristof's categories are not formatted correctly
+# zero people it is the future blog bug
diff --git a/heroscript/config.md b/heroscript/config.md
new file mode 100644
index 0000000..85f592f
--- /dev/null
+++ b/heroscript/config.md
@@ -0,0 +1,109 @@
+# www.threefold.io development script
+
+We first define our website and add a zola template for it
+
+```js
+!!website.define name:'www_threefold' title:'Threefold'
+
+!!website.template_add url:'https://github.com/threefoldfoundation/www_threefold_io/tree/development_zola'
+```
+
+Then we add the doctree's we will use for the website.
+We use `threefoldfoundation/threefold_data` for blogs, people and news. We use `threefoldfoundation/www_threefold_io` for site content for pages.
+
+```js
+!!website.doctree_add url:'https://github.com/threefoldfoundation/www_threefold_io/tree/development_zola/content'
+
+add collections to the website
+!!website.doctree_add url:'https://github.com/threefoldfoundation/threefold_data/tree/development_zola/content'
+```
+
+Next, we add a header and a footer for our website
+
+```js
+!!website.header_add
+ collection: 'content'
+ file: 'header.md'
+
+!!website.footer_add
+ collection: 'content'
+ file: 'footer.md'
+```
+
+Let's then add our pages
+
+```js
+!!website.page_add
+ name: 'Home'
+ collection: 'content'
+ file: 'home.md'
+ homepage: true
+
+!!website.page_add
+ name: 'About'
+ collection: 'content'
+ file: 'about.md'
+
+!!website.page_add
+ name: 'Careers'
+ collection: 'content'
+ file: 'careers.md'
+
+!!website.page_add
+ name: 'Farm'
+ collection: 'content'
+ file: 'farm.md'
+
+!!website.page_add
+ name: 'Support'
+ collection: 'content'
+ file: 'support.md'
+```
+
+Finally we can select and add some blog posts, news and people sections.
+
+## Blogs
+
+Below we select blogs relavant to threefold.io from our data repository
+
+```js
+!!website.blog_add
+ name: 'A better understanding of wealth'
+ collection: 'blog'
+ file: 'a_better_understanding_of_wealth.md'
+ image: 'a_better_understanding_of_wealth.jpg'
+
+!!website.blog_add
+ name: 'A different approach to blockchain'
+ collection: 'blog'
+ file: 'a_different_approach_to_blockchain.md'
+ image: 'a_different_approach_to_blockchain.jpg'
+```
+
+## People
+
+```js
+!!website.person_add
+ name: 'Adnan Fatayerji'
+ collection: 'person'
+ file: 'adnan_fatayerji.md'
+
+!!website.person_add
+ name: 'Alexandre Hannelas'
+ collection: 'person'
+ file: 'alexandre_hannelas.md'
+```
+
+## News
+
+```js
+!!website.news_add
+ name: '3Bot Connect & TFConnect'
+ collection: 'news'
+ file: '3bot_connect_tf_connect.md'
+
+```
+
+```js
+!!website.generate
+```
diff --git a/static/images/ai.jpg b/static/images/ai.jpg
new file mode 100644
index 0000000..9a28c24
Binary files /dev/null and b/static/images/ai.jpg differ
diff --git a/static/images/asset.jpg b/static/images/asset.jpg
new file mode 100644
index 0000000..30c353b
Binary files /dev/null and b/static/images/asset.jpg differ
diff --git a/static/images/bot2.jpg b/static/images/bot2.jpg
new file mode 100644
index 0000000..8062d49
Binary files /dev/null and b/static/images/bot2.jpg differ
diff --git a/static/images/datacenter.jpg b/static/images/datacenter.jpg
new file mode 100644
index 0000000..db61937
Binary files /dev/null and b/static/images/datacenter.jpg differ
diff --git a/static/images/dc.jpg b/static/images/dc.jpg
new file mode 100644
index 0000000..6c22071
Binary files /dev/null and b/static/images/dc.jpg differ
diff --git a/static/images/dc2.jpg b/static/images/dc2.jpg
new file mode 100644
index 0000000..554cf5f
Binary files /dev/null and b/static/images/dc2.jpg differ
diff --git a/static/images/digital.jpg b/static/images/digital.jpg
new file mode 100644
index 0000000..d041bef
Binary files /dev/null and b/static/images/digital.jpg differ
diff --git a/static/images/eco.jpg b/static/images/eco.jpg
new file mode 100644
index 0000000..237a008
Binary files /dev/null and b/static/images/eco.jpg differ
diff --git a/static/images/eco2.jpg b/static/images/eco2.jpg
new file mode 100644
index 0000000..5325c4d
Binary files /dev/null and b/static/images/eco2.jpg differ
diff --git a/static/images/eco3.jpg b/static/images/eco3.jpg
new file mode 100644
index 0000000..37feefe
Binary files /dev/null and b/static/images/eco3.jpg differ
diff --git a/static/images/freezone.jpg b/static/images/freezone.jpg
new file mode 100644
index 0000000..7d78c69
Binary files /dev/null and b/static/images/freezone.jpg differ
diff --git a/static/images/freezone2.jpg b/static/images/freezone2.jpg
new file mode 100644
index 0000000..c17c5b1
Binary files /dev/null and b/static/images/freezone2.jpg differ
diff --git a/static/images/fumba.jpg b/static/images/fumba.jpg
new file mode 100644
index 0000000..2b5c4a6
Binary files /dev/null and b/static/images/fumba.jpg differ
diff --git a/static/images/fumba.webp b/static/images/fumba.webp
new file mode 100644
index 0000000..2e93a08
Binary files /dev/null and b/static/images/fumba.webp differ
diff --git a/static/images/home.jpg b/static/images/home.jpg
new file mode 100644
index 0000000..803ca3b
Binary files /dev/null and b/static/images/home.jpg differ
diff --git a/static/images/home1.jpg b/static/images/home1.jpg
new file mode 100644
index 0000000..0dd178e
Binary files /dev/null and b/static/images/home1.jpg differ
diff --git a/static/images/icons/authentic.svg b/static/images/icons/authentic.svg
new file mode 100644
index 0000000..a583cdc
--- /dev/null
+++ b/static/images/icons/authentic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/icons/bar-svgrepo-com.svg b/static/images/icons/bar-svgrepo-com.svg
new file mode 100644
index 0000000..07ac56d
--- /dev/null
+++ b/static/images/icons/bar-svgrepo-com.svg
@@ -0,0 +1,82 @@
+
+
+
diff --git a/static/images/icons/code-svgrepo-com.svg b/static/images/icons/code-svgrepo-com.svg
new file mode 100644
index 0000000..6be0cd8
--- /dev/null
+++ b/static/images/icons/code-svgrepo-com.svg
@@ -0,0 +1,95 @@
+
+
+
diff --git a/static/images/icons/favicon.png b/static/images/icons/favicon.png
new file mode 100644
index 0000000..40b4c0b
Binary files /dev/null and b/static/images/icons/favicon.png differ
diff --git a/static/images/icons/form-svgrepo-com.svg b/static/images/icons/form-svgrepo-com.svg
new file mode 100644
index 0000000..1da4268
--- /dev/null
+++ b/static/images/icons/form-svgrepo-com.svg
@@ -0,0 +1,67 @@
+
+
+
diff --git a/static/images/icons/open.svg b/static/images/icons/open.svg
new file mode 100644
index 0000000..1a62a8f
--- /dev/null
+++ b/static/images/icons/open.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/icons/paint-brush-art-svgrepo-com.svg b/static/images/icons/paint-brush-art-svgrepo-com.svg
new file mode 100644
index 0000000..f8ed55a
--- /dev/null
+++ b/static/images/icons/paint-brush-art-svgrepo-com.svg
@@ -0,0 +1,79 @@
+
+
+
diff --git a/static/images/icons/people.svg b/static/images/icons/people.svg
new file mode 100644
index 0000000..66a1806
--- /dev/null
+++ b/static/images/icons/people.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/icons/planet.svg b/static/images/icons/planet.svg
new file mode 100644
index 0000000..61ec8b2
--- /dev/null
+++ b/static/images/icons/planet.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/icons/simple.svg b/static/images/icons/simple.svg
new file mode 100644
index 0000000..00d55f1
--- /dev/null
+++ b/static/images/icons/simple.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/logo.svg b/static/images/logo.svg
new file mode 100644
index 0000000..ef0dbbf
--- /dev/null
+++ b/static/images/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/logo_s.svg b/static/images/logo_s.svg
new file mode 100644
index 0000000..e46be4e
--- /dev/null
+++ b/static/images/logo_s.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/static/images/new_logo_tft.png b/static/images/new_logo_tft.png
new file mode 100644
index 0000000..406fedc
Binary files /dev/null and b/static/images/new_logo_tft.png differ
diff --git a/static/images/people_1.jpg b/static/images/people_1.jpg
new file mode 100644
index 0000000..6660d0e
Binary files /dev/null and b/static/images/people_1.jpg differ
diff --git a/static/images/people_2.jpg b/static/images/people_2.jpg
new file mode 100644
index 0000000..3621795
Binary files /dev/null and b/static/images/people_2.jpg differ
diff --git a/static/images/people_3.jpg b/static/images/people_3.jpg
new file mode 100644
index 0000000..015e8d5
Binary files /dev/null and b/static/images/people_3.jpg differ
diff --git a/static/images/people_4.jpg b/static/images/people_4.jpg
new file mode 100644
index 0000000..54d8537
Binary files /dev/null and b/static/images/people_4.jpg differ
diff --git a/static/images/people_5.jpg b/static/images/people_5.jpg
new file mode 100644
index 0000000..d40346a
Binary files /dev/null and b/static/images/people_5.jpg differ
diff --git a/static/images/startup.jpg b/static/images/startup.jpg
new file mode 100644
index 0000000..ab13696
Binary files /dev/null and b/static/images/startup.jpg differ
diff --git a/static/images/startup1.jpg b/static/images/startup1.jpg
new file mode 100644
index 0000000..f68ef6d
Binary files /dev/null and b/static/images/startup1.jpg differ
diff --git a/static/images/twin.jpg b/static/images/twin.jpg
new file mode 100644
index 0000000..4d263b7
Binary files /dev/null and b/static/images/twin.jpg differ
diff --git a/static/images/znz.jpg b/static/images/znz.jpg
new file mode 100644
index 0000000..f163243
Binary files /dev/null and b/static/images/znz.jpg differ
diff --git a/static/images/zone.jpg b/static/images/zone.jpg
new file mode 100644
index 0000000..1283d7b
Binary files /dev/null and b/static/images/zone.jpg differ
diff --git a/static/images/zone1.jpg b/static/images/zone1.jpg
new file mode 100644
index 0000000..a79d938
Binary files /dev/null and b/static/images/zone1.jpg differ
diff --git a/static/images/zone2.jpg b/static/images/zone2.jpg
new file mode 100644
index 0000000..f543b89
Binary files /dev/null and b/static/images/zone2.jpg differ
diff --git a/static/js/custom.js b/static/js/custom.js
new file mode 100644
index 0000000..1998788
--- /dev/null
+++ b/static/js/custom.js
@@ -0,0 +1,193 @@
+var displayedMenu = "";
+var hamburgerShown = false;
+let width = screen.width;
+var isMobile = width < 1024;
+
+function toggleMenu(button) {
+ if (displayedMenu === button.id.split("-")[0]) {
+ button.className = button.className.replace(
+ " text-gray-800 bg-stone-200 sm:bg-transparent",
+ " text-gray-900"
+ );
+ hideMenu(button.id.split("-")[0]);
+ button.lastElementChild.className = button.lastElementChild.className.replace(
+ "rotate-0",
+ "-rotate-90"
+ );
+ displayedMenu = "";
+ } else {
+ showMenu(button.id.split("-")[0]);
+ button.lastElementChild.className = button.lastElementChild.className.replace(
+ "-rotate-90",
+ "rotate-0"
+ );
+ button.className = button.className.replace(
+ " text-gray-900",
+ " text-gray-800 bg-stone-200 sm:bg-transparent"
+ );
+ displayedMenu = button.id.split("-")[0];
+ }
+
+ document.addEventListener("click", function (e) {
+ if (!button.contains(e.target)) {
+ hideMenu(button.id.split("-")[0]);
+ button.lastElementChild.className = button.lastElementChild.className.replace(
+ "rotate-0",
+ "-rotate-90"
+ );
+ displayedMenu = "";
+ }
+ });
+}
+
+function handleClick(button) {
+ if (button.id === "hamburger-btn" || button.id === "close-hamburger-btn") {
+ toggleHamburger();
+ }
+ if (button.id.indexOf("menu") !== -1) {
+ toggleMenu(button);
+ }
+}
+
+function toggleHamburger() {
+ if (hamburgerShown) {
+ hideHamburger();
+ hamburgerShown = false;
+ } else {
+ showHamburger();
+ hamburgerShown = true;
+ }
+}
+
+function showMenu(menuName) {
+ var menuId = menuName + (isMobile ? "-mobile-menu" : "-menu");
+ var menuBtnId = menuName + (isMobile ? "-mobile-menu" : "-menu");
+ var menuElement = document.getElementById(menuId);
+ menuElement.className = menuElement.className.replace(" hidden", "");
+ let children = document.querySelectorAll(".nav_menu");
+ for (let i = 0; i < children.length; i++) {
+ if (menuElement !== children[i]) {
+ let btnId = `${children[i].id}-btn`;
+ let btn = document.getElementById(btnId);
+ if (btn && !children[i].classList.contains("hidden")) {
+ children[i].classList.add("hidden");
+ btn.lastElementChild.classList.replace("rotate-0", "-rotate-90");
+ }
+ }
+ }
+ setTimeout(function () {
+ menuElement.className = menuElement.className.replace(
+ "duration-200 ease-in opacity-0 -translate-y-1",
+ "duration-150 ease-out opacity-1 -translate-y-0"
+ );
+ }, 10);
+}
+
+function hideMenu(menuName) {
+ var menuId = menuName + (isMobile ? "-mobile-menu" : "-menu");
+ var menuElement = document.getElementById(menuId);
+ var btnId = `${menuElement.id}-btn`;
+ let btn = document.getElementById(btnId);
+ menuElement.className = menuElement.className.replace(
+ "duration-150 ease-out opacity-1 -translate-y-0",
+ "duration-200 ease-in opacity-0 -translate-y-1"
+ );
+ btn.lastElementChild.className = btn.lastElementChild.className.replace(
+ "rotate-0",
+ "-rotate-90"
+ );
+ if (!menuElement.classList.contains("hidden")) {
+ menuElement.classList.add("hidden");
+ }
+}
+
+function showHamburger() {
+ document.getElementById("header-container").className = "overflow-hidden";
+ document.getElementById("hamburger").className =
+ "fixed mt-14 z-20 top-0 inset-x-0 transition transform origin-top-right";
+ document.getElementById("hamburger-btn").className =
+ "hidden lg:hidden inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out";
+ document.getElementById("close-hamburger-btn").className =
+ "inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out";
+}
+
+function hideHamburger() {
+ document.getElementById("header-container").className = "";
+ document.getElementById("hamburger").className =
+ "hidden absolute z-20 top-0 inset-x-0 transition transform origin-top-right lg:hidden";
+ document.getElementById("hamburger-btn").className =
+ "inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out";
+ document.getElementById("close-hamburger-btn").className =
+ "hidden lg:hidden inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out";
+ if (displayedMenu !== "") {
+ hideMenu(displayedMenu);
+ }
+}
+
+function toggleFilter() {
+ var filterMenu = document.getElementById("filter-menu");
+ if (filterMenu.className.includes("hidden")) {
+ filterMenu.className = filterMenu.className.replace("hidden", " ");
+ } else {
+ filterMenu.className = filterMenu.className + " hidden";
+ }
+}
+window.onload = function () {
+ let elements = document.getElementsByTagName("button");
+ let buttons = [...elements];
+
+ buttons.forEach((button) => {
+ button.addEventListener("click", function () {
+ handleClick(button);
+ });
+ });
+
+ document.getElementById("filter-btn").addEventListener("click", toggleFilter);
+ document
+ .getElementById("mobile-learn-btn")
+ .addEventListener("click", toggleMenu);
+};
+
+function openInNewTab(url) {
+ window.open(url, "_blank").focus();
+}
+
+function readingTime() {
+ let articles = document.querySelectorAll(".article");
+ let times = document.querySelectorAll(".time");
+ const wpm = 225;
+ let words;
+ for (var i = 0; i < articles.length; i++) {
+ words = articles[i].innerText.trim().split(/\s+/).length;
+ let time = Math.ceil(words / wpm);
+ times[i].innerText = `${time} minute read`;
+ }
+}
+
+async function getStats() {
+ try {
+ const stats = await fetch(
+ "https://stats.grid.tf/api/stats-summary"
+ ).then((res) => res.json());
+ return formatStatsData(stats);
+ } catch (error) {
+ throw new Error(
+ `Failed to retrieve data from network statistics: ${error}`
+ );
+ }
+}
+
+function formatStatsData(stats) {
+ let items = document.querySelector(".items");
+ items.classList.remove("animate-pulse");
+ document.getElementById("ssd").innerHTML = stats.ssd;
+ document.getElementById("nodes").innerHTML = stats.nodes;
+ document.getElementById("countries").innerHTML = stats.countries;
+ document.getElementById("cores").innerHTML = stats.cores
+ .toString()
+ .replace(/\B(?=(\d{3})+(?!\d))/g, ",");
+}
+
+readingTime();
+getStats();
+document.getElementById("year").innerHTML = new Date().getFullYear();
diff --git a/static/videos/cybercity_comp.mp4 b/static/videos/cybercity_comp.mp4
new file mode 100644
index 0000000..36690c7
Binary files /dev/null and b/static/videos/cybercity_comp.mp4 differ
diff --git a/tailwind.config.js b/tailwind.config.js
new file mode 100644
index 0000000..1c659e7
--- /dev/null
+++ b/tailwind.config.js
@@ -0,0 +1,94 @@
+const colors = require('tailwindcss/colors')
+
+module.exports = {
+ content: [
+ './templates/**/*.html'
+ ],
+ safelist: [
+ {
+ pattern: /(-|)(ml|mr)-(4|8|12|16|20|24|28)/,
+ variants: [
+ 'sm', 'md', 'lg',
+ 'first', 'first:sm', 'first:md', 'first:lg',
+ 'last', 'last:sm', 'last:md', 'last:lg'
+ ],
+ },
+ {
+ pattern: /(pt|pb)-(0)/,
+ variants: [
+ '!', 'lg',
+ 'first', 'first:sm', 'first:md', 'first:lg',
+ 'last', 'last:sm', 'last:md', 'last:lg'
+ ],
+ },
+ {
+ pattern: /bg-teal-(50|100|200|300|400|500|600|700|800|900)/, // Added teal color safelist
+ }
+ ],
+
+ important: true,
+ theme: {
+ fontSize: {
+ 'xs': '.75rem',
+ 'sm': '.875rem',
+ 'tiny': '.875rem',
+ 'base': '1rem',
+ 'md': '1.05rem',
+ 'lg': '1.125rem',
+ 'xl': '1.25rem',
+ '2xl': '1.5rem',
+ '3xl': '1.875rem',
+ '4xl': '2.25rem',
+ '5xl': '3rem',
+ '6xl': '4rem',
+ '7xl': '5rem',
+ },
+ colors: {
+ transparent: 'transparent',
+ white: '#ffffff',
+ black: '#000000',
+ green: '#c7c7c7 ',
+ gray: colors.gray,
+ slate: colors.slate,
+ stone: colors.stone,
+ zinc: colors.zinc,
+ yellow: colors.yellow,
+ orange: colors.orange,
+ sky: colors.sky,
+ blue: {
+ '100': '#bbeeff',
+ '200': '#00aaff',
+ '300': '#0088ff',
+ '400': '#0033ff',
+ '500': '#0000ff',
+ '600': '#0000bb',
+ '700': '#0000aa',
+ '800': '#000088',
+ '900': '#000066',
+ },
+
+ },
+ extend: {
+ screens: {
+ '2xl': '1450px',
+ // => @media (min-width: 992px) { ... }
+ },
+ animation: {
+ 'infinite-scroll': 'infinite-scroll 25s linear infinite',
+ },
+ keyframes: {
+ 'infinite-scroll': {
+ from: { transform: 'translateX(0)' },
+ to: { transform: 'translateX(-100%)' },
+ }
+ },
+ fontFamily: {
+ sans: ['Inter', 'sans-serif'],
+ },
+ },
+ },
+ plugins: [
+ require('@tailwindcss/aspect-ratio'),
+ // require("flyonui"),
+ ], // if we add forms, do it here
+}
diff --git a/templates/404.html b/templates/404.html
new file mode 100644
index 0000000..671202a
--- /dev/null
+++ b/templates/404.html
@@ -0,0 +1,20 @@
+{% extends "_default/base.html" %}
+
+{% block content %}
+
+
+
+
+
+
+
+
+
You seem to have ended up on a missing page!
+
This could mean that you’ve entered the wrong URL or you’ve clicked on content which has moved locations or is no longer live. If you need assistance, click on the blue chat icon at the bottom of the screen to speak with real humans on our support team. Or go back to home.
+ {% for page in tfFaq.pages %}
+
+ {{ page.title }}
+
+
{{ page.content | safe }}
+
+
+ {% endfor %}
+
+
+{% elif current_path == '/farmfaq/' %}
+
{{ farmFaq.title }}
+
+ {% for page in farmFaq.pages %}
+
+ {{ page.title }}
+
+
{{ page.content | safe }}
+
+
+ {% endfor %}
+
+
+{% elif current_path == '/tftfaq/' %}
+
{{ tftFaq.title }}
+
+ {% for page in tftFaq.pages %}
+
+ {{ page.title }}
+
+
{{ page.content | safe }}
+
+
+ {% endfor %}
+
+{% endif %}
+
\ No newline at end of file
diff --git a/templates/partials/action/action.html b/templates/partials/action/action.html
new file mode 100644
index 0000000..da181b8
--- /dev/null
+++ b/templates/partials/action/action.html
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
When 3 Becomes 4
+
+ The internet is a trillion-dollar industry, and we believe it should be built and owned by everyone—an internet created by all, for all.
+ Web4 represents the natural evolution of the internet, enabling humans and machines to collaborate in creating a new form of intelligence that respects both the planet and the people.
+ For over a decade, ThreeFold has been dedicated to realizing this vision. Now is time for our next chapter.
+
+
+
+
+
+
+
+
+
We believe actions are more important than words.
+ This page is in black & white, to let YOU be the color of the future of the internet.
+
+
+
\ No newline at end of file
diff --git a/templates/partials/action/hero.html b/templates/partials/action/hero.html
new file mode 100644
index 0000000..c4a4d3a
--- /dev/null
+++ b/templates/partials/action/hero.html
@@ -0,0 +1,83 @@
+
+
+
+ We believe actions are more important than words.
+ This page is in black & white,
+ to let YOU be the color of the future of the internet.
+
+
+
+ Web4
+
+
+
+ Web4 opens the door for Machines & Humans to create together
+ a new form of Intelligence with respect for the Planet & People.
+
+
+
+ Augmented Collective Intelligence
+
+
+
+ ThreeFold has been working on Web4 for more than 10 years,
+ ready to go public 12.12.2024
+
+
+
+ An Internet created by Everyone for Everyone
+
+
+
+ The Internet is a Trillion USD business.
+ We want to make sure this Internet is built and owned by all of us.
+
+
+
+ Register for our online launch event 12-12-2024.
+
From secure phones and AI-driven virtual assistants to encrypted routers and decentralized nodes, explore a suite of innovative Web4 products designed to redefine connectivity, empower autonomy, and simplify daily life with cutting-edge technology.
+
+
+
+
+
+
+
Web4 Phone
+
The world’s first truly decentralized smartphone on a mission to define Web4 mobile connectivity.
Discover ThreeFold's Web4 Products for a Smarter, Secure Future
+
+ From secure phones and AI-driven virtual assistants to encrypted routers and decentralized nodes, explore a suite of innovative Web4 products designed to redefine connectivity, empower autonomy, and simplify daily life with cutting-edge technology.
+
+
+
+
+
+
+
+
+
+
+
+
3Phone
+
Secure smartphones come with built-in decentralized apps and seamlessly integrate with the ThreeFold Grid.
+ All
+ {% set taxonomy = get_taxonomy(kind="categories") %}
+ {% set categories = taxonomy.items %}
+ {% for category in categories %}
+ {% set path = category.name | slugify %}
+ {% set fullpath = "/categories/" ~ path %}
+ {{category.name}}
+ {% endfor %}
+
+
+{% set section = get_section(path="blog/_index.md")%}
+
+
+
FEATURED POSTS
+
+ {% for page in section.pages %}
+ {% if page.extra.isFeatured %}
+ {{ page.title }}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/cta.html b/templates/partials/cta.html
new file mode 100644
index 0000000..378eb8a
--- /dev/null
+++ b/templates/partials/cta.html
@@ -0,0 +1,16 @@
+
+
diff --git a/templates/partials/feature/feature1.html b/templates/partials/feature/feature1.html
new file mode 100644
index 0000000..8b036cf
--- /dev/null
+++ b/templates/partials/feature/feature1.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+
SUBHEADER
+
This is Feature1.html
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+ ✓ Push to deploy.
+
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+ ✓ SSL certificates.
+
+
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+
+
+
+ ✓ Database backups.
+
+
Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/feature/feature2.html b/templates/partials/feature/feature2.html
new file mode 100644
index 0000000..d70a20f
--- /dev/null
+++ b/templates/partials/feature/feature2.html
@@ -0,0 +1,64 @@
+
+
+
+
SUBHEADER
+
This is Feature2.html
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ✓ Push to deploy.
+
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit aute id magna.
+
+
+
+
+ ✓ SSL certificates.
+
+
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+
+
+
+
+ ✓ Simple queues.
+
+
Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus.
+
+
+
+
+ ✓ Advanced security.
+
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit aute id magna.
+
+
+
+
+ ✓ Powerful API.
+
+
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+
+
+
+
+ ✓ Database backups.
+
+
Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus.
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/feature/feature3.html b/templates/partials/feature/feature3.html
new file mode 100644
index 0000000..d6b2514
--- /dev/null
+++ b/templates/partials/feature/feature3.html
@@ -0,0 +1,50 @@
+
+
+
+
SUBHEADER
+
This is Feature3.html
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+
+
+
+ ✓ Push to deploy
+
+
+
Commodo nec sagittis tortor mauris sed. Turpis tortor quis scelerisque diam id accumsan nullam tempus. Pulvinar etiam lacus volutpat eu.
+
\ No newline at end of file
diff --git a/templates/partials/feature/feature4.html b/templates/partials/feature/feature4.html
new file mode 100644
index 0000000..49e1f8c
--- /dev/null
+++ b/templates/partials/feature/feature4.html
@@ -0,0 +1,85 @@
+
+
+
+
SUBHEADER
+
This is Feature4.html
+
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
✓ Store effortlessly
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
✓ Restore authenticity
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
✓ Unlockinsights
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
✓ Streamline interactions
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
✓ digital presence
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/feature/feature5.html b/templates/partials/feature/feature5.html
new file mode 100644
index 0000000..d14ebea
--- /dev/null
+++ b/templates/partials/feature/feature5.html
@@ -0,0 +1,152 @@
+
+
+
+
SUBHEADER
+
This is feature5.html
+
+ Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione. Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+
+
+
+
+
+
+
+ FEATURE
+
+
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
Decentralized communication layer of TF Grid that connects and coordinates nodes on the ThreeFold Grid, enabling secure and efficient peer-to-peer interactions.
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/feature/feature6.html b/templates/partials/feature/feature6.html
new file mode 100644
index 0000000..702c7c1
--- /dev/null
+++ b/templates/partials/feature/feature6.html
@@ -0,0 +1,39 @@
+
+
+
+
+
+
SUBHEADER
+
This is Feature6.html
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+ Push to deploy.
+
+
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maiores impedit perferendis suscipit eaque, iste dolor cupiditate blanditiis ratione.
+
+
+
+
+ SSL certificates.
+
+
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+
+
+
+
+ Database backups.
+
+
Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus. Et magna sit morbi lobortis.
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/featuredBlog.html b/templates/partials/featuredBlog.html
new file mode 100644
index 0000000..5875b4c
--- /dev/null
+++ b/templates/partials/featuredBlog.html
@@ -0,0 +1,53 @@
+{% if featured.taxonomies.people %}
+ {% set people = get_section(path="people/_index.md") %}
+ {% set pages_str = people.pages | json_encode() | as_str %}
+ {% if pages_str is containing(featured.taxonomies.people[0]) %}
+ {% set author_path = 'people/' ~ featured.taxonomies.people[0] ~ '/index.md' %}
+ {% set author = get_page(path=author_path) %}
+ {% endif %}
+{% endif %}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/featuredNews.html b/templates/partials/featuredNews.html
new file mode 100644
index 0000000..50e03c6
--- /dev/null
+++ b/templates/partials/featuredNews.html
@@ -0,0 +1,45 @@
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/hero/hero2.html b/templates/partials/hero/hero2.html
new file mode 100644
index 0000000..7f0aa01
--- /dev/null
+++ b/templates/partials/hero/hero2.html
@@ -0,0 +1,19 @@
+
+
+
+
SUBHEADER
+
This is Hero2.html
+
This is smaller title h2
+
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo. Elit sunt amet fugiat veniam occaecat.
+
\ No newline at end of file
diff --git a/templates/partials/hero/hero5.html b/templates/partials/hero/hero5.html
new file mode 100644
index 0000000..32ef2c4
--- /dev/null
+++ b/templates/partials/hero/hero5.html
@@ -0,0 +1,29 @@
+
+
+
+
+
SUBHEADER
+
+ This is Hero5.html
+
+
This is smaller title h2
+
+ Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+ Elit sunt amet fugiat veniam occaecat fugiat aliqua. Anim aute id magna aliqua ad ad non deserunt sunt.
+
diff --git a/templates/partials/hero/hero6.html b/templates/partials/hero/hero6.html
new file mode 100644
index 0000000..d921f0b
--- /dev/null
+++ b/templates/partials/hero/hero6.html
@@ -0,0 +1,28 @@
+
+
+
+
+
SUBHEADER
+
+ This is Hero6.html
+
+
This is smaller title h2
+
+ Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+ Elit sunt amet fugiat veniam occaecat fugiat aliqua. Anim aute id magna aliqua ad ad non deserunt sunt.
+
diff --git a/templates/partials/hero/hero9.html b/templates/partials/hero/hero9.html
new file mode 100644
index 0000000..0aacd72
--- /dev/null
+++ b/templates/partials/hero/hero9.html
@@ -0,0 +1,22 @@
+
+
+
+
+
+
SUBHEADER
+
This is hero9.html
+
This is smaller title h2
+
Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo. Elit sunt amet fugiat veniam occaecat fugiat aliqua. Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.
+
\ No newline at end of file
diff --git a/templates/partials/home/banner.html b/templates/partials/home/banner.html
new file mode 100644
index 0000000..047bdc3
--- /dev/null
+++ b/templates/partials/home/banner.html
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/home/bento.html b/templates/partials/home/bento.html
new file mode 100644
index 0000000..0aac648
--- /dev/null
+++ b/templates/partials/home/bento.html
@@ -0,0 +1,115 @@
+
+
+ CONCEPT
+
Value Propositions
+
+
+
+
+
+
+
+
NEXT-GEN BUSINESS
+
Digital Freezone
+
+
A future-focused ecosystem with streamlined business processes, decentralized systems, and global connectivity.
+
+
+
+
+
+
+
+
+
+
+
SUSTAINABLE CLOUD & AI INFRASTRUCTURE
+
DataCenter City
+
Zanzibar’s largest, most sustainable data center, equipped with Threefold Nodes and co-owned AI integrated with city services.
+
+
+
+
+
+
+
+
+
+
+
SECURE AI & DIGITAL IDENTITY
+
Digital Hero
+
Private, secure communication and transactions with efficient AI assisted collaboration and full control of your own data and digital identity.
+
+
+
+
+
+
+
+
+
+
+
STARTUP GROWTH & INNOVATION HUB
+
Venture Creator
+
Empowers startups with strategic guidance, funding support, global networking, talent acquisition, and operational resources.
+
+
+
+
+
+
+
+
+
+
+
SUSTAINABLE FUTURE
+
Regenerative Living
+
Tech-driven sustainable living powered by clean energy, organic food, and a resilient, collaborative community with global impact.
+
+
+
+
+
+
+
+
+
+
+
DECENTRALIZED ECONOMY
+
Digital Assets
+
Tokenized assets drive fair trade, sustainable economies, and stability with resilient digital currencies.
+
+
+
+
+
+
+
+
+
+
+
LEGAL AUTONOMY
+
Autonomous Zone
+
Enjoy legal independence, data ownership, and secure connections in a future-focused global ecosystem.
+
+
+
+
+
+
+
+
+
+
+
AI-POWERED INFRASTRUCTURE
+
Augmented Intelligence
+
Homes power Zanzibar’s data center, with co-owned AI integrated into services and generating citizen income.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/home/cta.html b/templates/partials/home/cta.html
new file mode 100644
index 0000000..f058cc2
--- /dev/null
+++ b/templates/partials/home/cta.html
@@ -0,0 +1,14 @@
+
+ CyberCity is a next-generation smart city in Fumba, Zanzibar, designed to integrate cutting-edge technology, sustainability, and economic innovation. It features a Digital Freezone, regenerative living, AI-driven services, and a decentralized economic model, and many more.
+
+
+
+
+
+
+
+
+
+
+
+
+ Fumba is part of the 2042 Fumba Free Economic Zone Master Plan, strategically selected for its rapid development potential, economic incentives, and unique blend of cultural heritage and natural beauty. It offers a stable environment for global investment and innovation.
+
+
+
+
+
+
+
+
+
+
+
+
+ The Digital Freezone is a business-friendly ecosystem within Cybercity that features streamlined regulations, financial transparency, and global connectivity. It provides a light-touch regulatory environment, making it ideal for startups, digital entrepreneurs, and international businesses.
+
+
+
+
+
+
+
+
+
+
+
+
+ CyberCity is designed with eco-friendly urban planning, featuring car-free green spaces, smart energy solutions like Vehicle-to-Grid (V2G) integration, organic food production, and co-owned AI that optimizes resources while generating income for citizens.
+
+
+
+
+
+
+
+
+
+
+
+
+ You can invest, register a business, become a digital citizen, or move to CyberCity as an entrepreneur or resident. The city offers opportunities for innovators, investors, and forward-thinking individuals to be part of a revolutionary ecosystem.
+
+ CyberCity Zanzibar is a city that combines sustainable living, streamlined business processes, cutting-edge datacenters, venture creation, and secure digital tools that empower citizens, businesses, and investors.
+
ThreeFold is not a protocol. We’ve developed foundational technology that runs directly on bare metal (the hardware).
+
ThreeFold is likely the only active project with a truly scalable solution addressing the Internet and Cloud’s core components: Data, Cloud, and Network.
Data cannot be compromised and always remains private, owned by you. A scalable system, to the planetary level.
+
Can be distributed and stored in ways which are at least 10x more efficient and orders of magnitude more secure and reliable.
+
+
+
Autonomous Cloud
+
+
+
Self-healing and self-driving cloud based on an efficient and secure operating system runs directly on the hardware.
+
Can run any Web 2, Web 3, or AI workload at the edge of the Internet, with more scalability and reliability.
+
+
+
Unbreakable Network
+
+
+
End-to-end encrypted overlay network, always looking for the shortest possible path between participants.
+
Logical Internet address securely linked to a private key. Unlimited scale and performance optimizations.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/home/grid_stats.html b/templates/partials/home/grid_stats.html
new file mode 100644
index 0000000..177fc76
--- /dev/null
+++ b/templates/partials/home/grid_stats.html
@@ -0,0 +1,139 @@
+
+
+
+
+
A Place to Live and Innovate
+
Together, we aim to create a future that reflects our values. Here, we provide a safe and inspiring environment for startups to build solutions that can make a real difference. We believe that with technology, collaboration, and good intentions, anything is possible.
+
+
+
+
+
+
+
Planet First
+
Utmost respect to mother earth in every action.
+
+
+
+
+
+
+
People First
+
Bring equality of opportunities for everyone
+
+
+
+
+
+
+
Open Source
+
Value open source methods for many aspects in life.
+
+
+
+
+
+
+
Simplicity
+
Erase complexity of things that kills progress.
+
+
+
+
+
+ The total number of nodes on the grid. A node is a computer server 100% dedicated to the network.
+
+
Authenticity
+
Commited to restore authenticity of people and information.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/home/hero.html b/templates/partials/home/hero.html
new file mode 100644
index 0000000..a93dc81
--- /dev/null
+++ b/templates/partials/home/hero.html
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
Welcome to a New Regenerative Startup City in the Heart of Zanzibar
+
Spanning 700,000m² in the heart of Fumba, Zanzibar, CyberCity is a place where talent meets opportunity, innovation embraces sustainability, and collaboration fuels progress.
+
A system built to scale to a planetary level, compatible with AI, Cloud, Web2, and Web3. Capable to provide 100% uptime, it enables any machine and human to communicate over the shortest path.
+
+
+
\ No newline at end of file
diff --git a/templates/partials/home/products.html b/templates/partials/home/products.html
new file mode 100644
index 0000000..4f96c73
--- /dev/null
+++ b/templates/partials/home/products.html
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
Unlock Web4 with ThreeFold
+
Revolutionary Tools for the Decentralized Internet.
+
+
From secure phones and AI-driven virtual assistants to encrypted Web4 routers and decentralized nodes, our products redefine digital autonomy and connectivity.
+
\ No newline at end of file
diff --git a/templates/partials/home/residents.html b/templates/partials/home/residents.html
new file mode 100644
index 0000000..1c67ad6
--- /dev/null
+++ b/templates/partials/home/residents.html
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
PARTICIPATE
+
Become a Part of the Movement
+
Find out how you can join CyberCity and be part of the future. Whether you're looking to invest, launch your business, become a digital citizen, or move into the heart of innovation, now is your chance to be among the first pioneers shaping this groundbreaking ecosystem.
diff --git a/templates/partials/home/site.html b/templates/partials/home/site.html
new file mode 100644
index 0000000..41395e6
--- /dev/null
+++ b/templates/partials/home/site.html
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+ PROJECT SITE
+
+ Discover Fumba
+
+
+ Located in the heart of Zanzibar,Fumba offers a unique opportunity to merge modern development with cultural heritage and natural beauty.
+ As part of the 2042 Fumba Free Economic Zone Master Plan, Fumba is set to become a key driver of economic growth and innovation in the region, making it the perfect location for a Cybercity.
+
diff --git a/templates/partials/home/site2.html b/templates/partials/home/site2.html
new file mode 100644
index 0000000..085d9c5
--- /dev/null
+++ b/templates/partials/home/site2.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+ PROJECT SITE
+ Discover Fumba
+
+
+ Fumba, located in the heart of Zanzibar, offers a unique opportunity to merge modern development with cultural heritage and natural beauty. As part of the 2042 Fumba Free Economic Zone Master Plan, Fumba is set to become a key driver of economic growth and innovation in the region. This transformation positions Fumba as the ideal site for CyberCity, a future-focused development designed to inspire sustainability, collaboration, and prosperity.
+
+
+
+
+
+
+
diff --git a/templates/partials/home/web4.html b/templates/partials/home/web4.html
new file mode 100644
index 0000000..29f9dcc
--- /dev/null
+++ b/templates/partials/home/web4.html
@@ -0,0 +1,78 @@
+
+
+
+
+
WEB4
+
+
The Next Evolution of the Internet
+
Web4 is the natural progression of the Internet, where humans and artificial intelligence work together to create a new paradigm designed to promote planetary well-being and ensure equal opportunities for all. Users are in 100% control of their data and no centralized services are needed.
+ All
+ {% set taxonomy = get_taxonomy(kind="news-category") %}
+ {% set categories = taxonomy.items %}
+ {% for category in categories %}
+ {% set path = category.name | slugify %}
+ {% set fullpath = "/news-category/" ~ path %}
+ {{category.name}}
+ {% endfor %}
+
+
+{% set section = get_section(path="newsroom/_index.md")%}
+
+
+
FEATURED NEWS
+
+ {% for page in section.pages %}
+ {% if page.extra.isFeatured %}
+ {{ page.title }}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/pageBox.html b/templates/partials/pageBox.html
new file mode 100644
index 0000000..d33740c
--- /dev/null
+++ b/templates/partials/pageBox.html
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/templates/partials/page_list.html b/templates/partials/page_list.html
new file mode 100644
index 0000000..b773a04
--- /dev/null
+++ b/templates/partials/page_list.html
@@ -0,0 +1,19 @@
+
+{% if section.extra.group_pages_by %}
+
+ {% set taxonomy = get_taxonomy(kind=section.extra.group_pages_by) %}
+ {% set roles = taxonomy.items %}
+ {% for role in roles %}
+
+ {% set icon_path = config.extra.taxonomies["roles"][role.name].icon_path | as_str %}
+
+ {% set path = role.name | slugify %}
+ {% set fullpath = "/roles/" ~ path %}
+ {{role.name}}
+ {% for page in role.pages %}
+ {% include "partials/pageBox.html"%}
+ {% endfor %}
+
+ {% endfor %}
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/partials/partnerCard.html b/templates/partials/partnerCard.html
new file mode 100644
index 0000000..9d5edbc
--- /dev/null
+++ b/templates/partials/partnerCard.html
@@ -0,0 +1,22 @@
+
+ All
+ {% set taxonomy = get_taxonomy(kind="partners-category") %}
+ {% set categories = taxonomy.items %}
+ {% for category in categories %}
+ {% set path = category.name | slugify %}
+ {% set fullpath = "/partners-category/" ~ path %}
+ {{category.name}}
+ {% endfor %}
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/personCard.html b/templates/partials/personCard.html
new file mode 100644
index 0000000..024b06b
--- /dev/null
+++ b/templates/partials/personCard.html
@@ -0,0 +1,27 @@
+{% if page.title != 'ThreeFold Community' %}
+
\ No newline at end of file
diff --git a/templates/partials/solutions/hero.html b/templates/partials/solutions/hero.html
new file mode 100644
index 0000000..f2949b3
--- /dev/null
+++ b/templates/partials/solutions/hero.html
@@ -0,0 +1,40 @@
+
+
+
+
A Secure & Sovereign Infrastructure Layer for Web4
+
Our unique technology enables a system which can scale to a planetary level, can store data which can never be corrupted nor lost, is compatible with AI, Cloud, Web2, Web3 and Edge IT workloads, has the potential to recover from unforeseen events, and provide 100% uptime.
+
ThreeFold can be used by any Web2, Web3, AI, or Edge IT workload.
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/solutions/portfolio copy.html b/templates/partials/solutions/portfolio copy.html
new file mode 100644
index 0000000..defd355
--- /dev/null
+++ b/templates/partials/solutions/portfolio copy.html
@@ -0,0 +1,310 @@
+
+
+
+
+
What We’ve Built
+
+ At Threefold, we've created solutions that embody innovation, authenticity, and simplicity. Each solution is crafted to empower individuals and communities, blending cutting-edge technology with practical usability.
+
+
\ No newline at end of file
diff --git a/templates/partials/solutions/portfolio.html b/templates/partials/solutions/portfolio.html
new file mode 100644
index 0000000..4c86660
--- /dev/null
+++ b/templates/partials/solutions/portfolio.html
@@ -0,0 +1,150 @@
+
+
+
+
What We’ve Built
+
+ At ThreeFold, we've created products that embody innovation, authenticity, and simplicity. Each solution is crafted to empower individuals and communities, blending cutting-edge technology with practical usability.
+
+
+
+
+
+
+
+
+
+
+ ZERO-OS V3
+
+
+
A stateless and lightweight operating system that allows for an improved efficiency of up to 10x for certain workloads.
Decentralized communication layer of TF Grid that connects and coordinates nodes on the ThreeFold Grid, enabling secure and efficient peer-to-peer interactions.
An application-specific blockchain customized for the operation of a single application – provisioning decentralized compute, storage, and network capacity.
Specialized nodes that provide secure access points to the ThreeFold Grid, enabling decentralized networking, private data communication, and seamless interaction between users and applications.
A community-driven governance model that allows token holders to participate in decision-making processes related to the development and direction of the ThreeFold ecosystem.
Experience end-to-end encrypted communication in the shortest possible path, ensuring messages remain private and unalterable—even during disasters.
+
+
+
Store effortlessly
+
Securely share and store information with ease, scaling seamlessly from personal use to billions of users.
+
+
+
Restore authenticity
+
Determine which information can be trusted, bringing clarity and confidence back to the digital space.
+
+
+
Unlock limitless insights
+
Discover, analyze, and find information with no boundaries, aided by a powerful personal AI assistant.
+
+
+
Streamline your interactions
+
Keep track of all your connections and simplify your life with an AI that optimizes your daily tasks and interactions.
+
+
+
Take control of your digital presence
+
Own and manage your data, identity, and interactions across platforms, ensuring transparency and sovereignty in the digital world.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/solutions/whatyoucando.html b/templates/partials/solutions/whatyoucando.html
new file mode 100644
index 0000000..9d460f4
--- /dev/null
+++ b/templates/partials/solutions/whatyoucando.html
@@ -0,0 +1,72 @@
+
+
+
+
What You Can Do With It
+
Today, ThreeFold is primarily focused on empowering developers to create innovative cloud solutions.
On 12-12-24, we will unveil exciting news about how Web4 will soon become accessible to everyone, opening up endless possibilities for all users.
+
+
+
+
+
+
+ Communicate securely
+
+
+
Experience end-to-end encrypted communication in the shortest possible path, ensuring messages remain private and unalterable—even during disasters.
+
+
+
+
+
+ Share and store effortlessly
+
+
+
Securely share and store information with ease, scaling seamlessly from personal use to billions of users.
+
+
+
+
+
+
+ Restore authenticity
+
+
+
Determine which information can be trusted, bringing clarity and confidence back to the digital space.
+
+
+
+
+
+
+ Unlock limitless insights
+
+
+
Discover, analyze, and find information with no boundaries, aided by a powerful personal AI assistant.
+
+
+
+
+
+
+ Streamline your interactions
+
+
+
Keep track of all your connections and simplify your life with an AI that optimizes your daily tasks and interactions.
+
+
+
+
+
+
+ Take control of your digital presence
+
+
+
Own and manage your data, identity, and interactions across platforms, ensuring transparency and sovereignty in the digital world.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/tagCard.html b/templates/partials/tagCard.html
new file mode 100644
index 0000000..934f9ab
--- /dev/null
+++ b/templates/partials/tagCard.html
@@ -0,0 +1,22 @@
+
\ No newline at end of file
diff --git a/templates/partials/tags.html b/templates/partials/tags.html
new file mode 100644
index 0000000..55c7e5c
--- /dev/null
+++ b/templates/partials/tags.html
@@ -0,0 +1,5 @@
+
+ {% for tag in page.taxonomies.tags %}
+
{{tag}}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/templates/partials/tagsCards.html b/templates/partials/tagsCards.html
new file mode 100644
index 0000000..8f3a4ad
--- /dev/null
+++ b/templates/partials/tagsCards.html
@@ -0,0 +1,69 @@
+{% block content %}
+
+
+
+ {% set path_array = current_path | split(pat="/") %}
+ {% set taxonomy = path_array[1] %}
+ {% set tag = path_array[2] %}
+ {% if taxonomy == "tags" %} #
+ {{tag | replace(from='-', to='_' ) | title}}
+ {% endif %}
+
+
+
+ {%- for post in paginator.pages %}
+ {% if "Engineering" == "Engineering"%}
+ {% include "partials/tagCard.html" %}
+ {%endif%} {%- endfor %}
+
+ {% set taxonomy = get_taxonomy(kind="tags") %}
+ {% set tags = taxonomy.items %}
+ {% for tag in tags %}
+ {% set path = tag.name | slugify %}
+ {% set fullpath = "/tags/" ~ path %}
+ #{{tag.name}}
+ {% endfor %}
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/what/hero.html b/templates/partials/what/hero.html
new file mode 100644
index 0000000..eb6026e
--- /dev/null
+++ b/templates/partials/what/hero.html
@@ -0,0 +1,40 @@
+
+
+
+
A Secure & Sovereign Infrastructure Layer for Web4
+
Our unique technology enables a system which can scale to a planetary level, can store data which can never be corrupted nor lost, is compatible with AI, Cloud, Web2, Web3 and Edge IT workloads, has the potential to recover from unforeseen events, and provide 100% uptime.
+
ThreeFold can be used by any Web2, Web3, AI, or Edge IT workload.
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/what/portfolio.html b/templates/partials/what/portfolio.html
new file mode 100644
index 0000000..f0c2ffb
--- /dev/null
+++ b/templates/partials/what/portfolio.html
@@ -0,0 +1,150 @@
+
+
+
+
What We’ve Built
+
+ At ThreeFold, we've created products that embody innovation, authenticity, and simplicity. Each solution is crafted to empower individuals and communities, blending cutting-edge technology with practical usability.
+
+
+
+
+
+
+
+
+
+
+ ZERO-OS V3
+
+
+
A stateless and lightweight operating system that allows for an improved efficiency of up to 10x for certain workloads.
Decentralized communication layer of TF Grid that connects and coordinates nodes on the ThreeFold Grid, enabling secure and efficient peer-to-peer interactions.
An application-specific blockchain customized for the operation of a single application – provisioning decentralized compute, storage, and network capacity.
Specialized nodes that provide secure access points to the ThreeFold Grid, enabling decentralized networking, private data communication, and seamless interaction between users and applications.
A community-driven governance model that allows token holders to participate in decision-making processes related to the development and direction of the ThreeFold ecosystem.
Experience end-to-end encrypted communication in the shortest possible path, ensuring messages remain private and unalterable—even during disasters.
+
+
+
Store effortlessly
+
Securely share and store information with ease, scaling seamlessly from personal use to billions of users.
+
+
+
Restore authenticity
+
Determine which information can be trusted, bringing clarity and confidence back to the digital space.
+
+
+
Unlock limitless insights
+
Discover, analyze, and find information with no boundaries, aided by a powerful personal AI assistant.
+
+
+
Streamline your interactions
+
Keep track of all your connections and simplify your life with an AI that optimizes your daily tasks and interactions.
+
+
+
Take control of your digital presence
+
Own and manage your data, identity, and interactions across platforms, ensuring transparency and sovereignty in the digital world.
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/what/whatyoucando.html b/templates/partials/what/whatyoucando.html
new file mode 100644
index 0000000..9d460f4
--- /dev/null
+++ b/templates/partials/what/whatyoucando.html
@@ -0,0 +1,72 @@
+
+
+
+
What You Can Do With It
+
Today, ThreeFold is primarily focused on empowering developers to create innovative cloud solutions.
On 12-12-24, we will unveil exciting news about how Web4 will soon become accessible to everyone, opening up endless possibilities for all users.
+
+
+
+
+
+
+ Communicate securely
+
+
+
Experience end-to-end encrypted communication in the shortest possible path, ensuring messages remain private and unalterable—even during disasters.
+
+
+
+
+
+ Share and store effortlessly
+
+
+
Securely share and store information with ease, scaling seamlessly from personal use to billions of users.
+
+
+
+
+
+
+ Restore authenticity
+
+
+
Determine which information can be trusted, bringing clarity and confidence back to the digital space.
+
+
+
+
+
+
+ Unlock limitless insights
+
+
+
Discover, analyze, and find information with no boundaries, aided by a powerful personal AI assistant.
+
+
+
+
+
+
+ Streamline your interactions
+
+
+
Keep track of all your connections and simplify your life with an AI that optimizes your daily tasks and interactions.
+
+
+
+
+
+
+ Take control of your digital presence
+
+
+
Own and manage your data, identity, and interactions across platforms, ensuring transparency and sovereignty in the digital world.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/why/hero.html b/templates/partials/why/hero.html
new file mode 100644
index 0000000..7931a41
--- /dev/null
+++ b/templates/partials/why/hero.html
@@ -0,0 +1,40 @@
+
+
+
+
The Internet Needs an Upgrade
+
The Internet brings the world together, yet much of it is now concentrated in the hands of a few powerful corporations. This wasn't its original intent. The Internet was envisioned as a decentralized, open space. A tool for freedom, collaboration, and equal access for all.
+
ThreeFold has invented a new Data, Network, and Cloud system
+ as an engine for an upgraded Web4 Internet.
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/why/impact.html b/templates/partials/why/impact.html
new file mode 100644
index 0000000..61b4764
--- /dev/null
+++ b/templates/partials/why/impact.html
@@ -0,0 +1,44 @@
+
+
+
+
Real-World Impact
+
ThreeFold’s technological infrastructure will empower many projects and initiatives across sectors. Here are two key projects:
+
+
+
+
+
+
+
+
+
OurWorld FreeZone
+
+ ThreeFold is working with the Zanzibar Communication Corporation (ZICTIA), on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all.
The announcement was made August 2023, and progress has been ongoing behind the scenes since then.
+ Updates expected Q4 2024.
+
+
+
+
+
+
+
+
+
+
+
+
Tanzanian Sovereign Internet
+
+
+ In January 2024, ThreeFold announced in collaboration with The ICT Commission of Tanzania and Holochain a collaboration to deploy sovereign Internet in Tanzania, along with the introduction of coding academies and innovation hubs.
The Dunia Yetu cooperative is being set up and efforts will ramp up in 2025.
+
+
+
+
+
+
+
+
+
diff --git a/templates/partials/why/matters.html b/templates/partials/why/matters.html
new file mode 100644
index 0000000..19f8ada
--- /dev/null
+++ b/templates/partials/why/matters.html
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
Why it Matters
+
+ For +30 years, we’ve dedicated ourselves to this vision, and ThreeFold is the culmination of that journey. Today, we have a fully operational product (V3) and a thriving community of farmers, users, and partners.
+
+ But we won’t stop here.
+
+ Web4 is the next generation of the Internet and our team has been working on it for +10 years—the Decentralized Cloud was the base layer to create Web4. As far as we know, we are the world’s first project approaching a fully functional Web4 infrastructure that places priority on both the planet and people.
+
+
+
+
+
+
+
+
+
Over the past decade, we’ve tackled complex challenges in areas such as data storage, secure overlay networking, and autonomous cloud security to bring this vision to life.
+
+
+
\ No newline at end of file
diff --git a/templates/partials/why/ourwhy.html b/templates/partials/why/ourwhy.html
new file mode 100644
index 0000000..b43d914
--- /dev/null
+++ b/templates/partials/why/ourwhy.html
@@ -0,0 +1,58 @@
+
+
+
+
+
Why it Matters?
+
+ For +30 years, we’ve dedicated ourselves to this vision, and ThreeFold is the culmination of that journey. Today, we have a fully operational product (V3) and a thriving community of farmers, users, and partners.
+
+ But we won’t stop here.
+
+ Web4 is the next generation of the Internet and our team has been working on it for +10 years—the Decentralized Cloud was the base layer to create Web4.
+ As far as we know, we are the world’s first project approaching a fully functional Web4 infrastructure that places priority on both the planet and people.
+
+ Over the past decade, we’ve tackled complex challenges in areas such as data storage,
+ secure overlay networking, and autonomous cloud security to bring this vision to life.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/why/reason.html b/templates/partials/why/reason.html
new file mode 100644
index 0000000..4236c9d
--- /dev/null
+++ b/templates/partials/why/reason.html
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
The Reason Behind It All
+
+ The Internet started as a peer-to-peer network, but over time it has become fragile and overly centralized. This shift has led to serious issues: misinformation is rampant, privacy and security are compromised, and half the world remains poorly connected.
+
+ Big tech companies now dominate the Internet, tracking our activities and influencing our decisions, consolidating control in ways that don't serve everyone equally...
+
+
+
+
+
+
+
+
+
+
Therefore we believe the Internet needs a fresh start—one that addresses these challenges with a focus on authenticity, equality, and sustainability for everyone.
The founders have been working on Internet technology since the early days, when it was a decentralized, peer-to-peer network. ThreeFold's aim is to help bring that vision to life once more. More than 50 full-time active developers support the project.
+
diff --git a/templates/partials/why/timeline.html b/templates/partials/why/timeline.html
new file mode 100644
index 0000000..0cce4e8
--- /dev/null
+++ b/templates/partials/why/timeline.html
@@ -0,0 +1,140 @@
+
+
+
+
+
ThreeFold’s Journey
+
The pivotal milestones that have shaped Threefold's growth and innovation, driving us towards a sustainable, decentralized future.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Phase I
+
+
Creation of Core Technology
+
+ 10+ years of Development
+ Built decentralized, autonomous, edge internet technology
+ 50m dollars invested by founders, community, and TF Tech investors
+
+
+
+
+
+
+
+
+
+
+
+
Phase II
+
+
Global Proof Of Concept
+
+ Open Source Development
+ 50+ Countries
+ 50,000+ Cores
+ 25,000,000 GB of Storage
+ Thousands of enthusiasts actively engage with and contribute to the evolution of the ThreeFold Network.
+ Decentralized reliable compute, network and storage layer for Web 2-3
+ Commitments from wonderful projects to build on top of us.
+
+
+
+
+
+
+
+
+
+
+
+
2025
+
+
ThreeFold Web4
+
+ Introduce a Web4 Phone & Router
+ Web4 smart contracts for the Web3 world.
+ Expand the network to +1 Million Nodes
+ Quantum Safe Compute, Storage & Network for agent centric Web4.
+ Build a network of commercial farmers for optimal performance and uptime
+
+
+
+
+
+
+
+
+
+
+
+
+
The Result
+
+
Sovereignty for All
+
+ An upgraded Internet for Billions.
+ A planet and people first hybrid of Humans and Machines deliver
+ on the promise of Augmented Collective Intelligence
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/why/why.html b/templates/partials/why/why.html
new file mode 100644
index 0000000..d5d76ad
--- /dev/null
+++ b/templates/partials/why/why.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
Deploy faster
+
A better workflow
+
Aliquet nec orci mattis amet quisque ullamcorper neque, nibh sem. At arcu, sit dui mi, nibh dui, diam eget aliquam. Quisque id at vitae feugiat egestas ac. Diam nulla orci at in viverra scelerisque eget. Eleifend egestas fringilla sapien.
+
+{% endblock content %}
\ No newline at end of file
diff --git a/templates/shortcodes/dev_resourses.html b/templates/shortcodes/dev_resourses.html
new file mode 100644
index 0000000..975a156
--- /dev/null
+++ b/templates/shortcodes/dev_resourses.html
@@ -0,0 +1,127 @@
+{% if '127.0.0.1:1111' in config.base_url %}
+{% set img_url = 'developer/' %}
+{% else %}
+{% set img_url = '' %}
+{% endif %}
+
+{% if 'www_threefold_io' in config.base_url %}
+{% set url = '/www_threefold_io' %}
+{% else %}
+{% set url = '' %}
+{% endif %}
+
+
+
+
+ where would you like to start?
+
+
ThreeFold's open-source
+ infrastructure has been built from the ground up on the Linux Kernel to create a fully decentralized
+ Internet and Cloud. From a stateless operating system to new compute, storage and networking primitives, the
+ next-generation Internet is here.
+
\ No newline at end of file
diff --git a/templates/shortcodes/featured_stories.html b/templates/shortcodes/featured_stories.html
new file mode 100644
index 0000000..aae4489
--- /dev/null
+++ b/templates/shortcodes/featured_stories.html
@@ -0,0 +1,70 @@
+
\ No newline at end of file
diff --git a/templates/shortcodes/grid_stats.html b/templates/shortcodes/grid_stats.html
new file mode 100644
index 0000000..413dde9
--- /dev/null
+++ b/templates/shortcodes/grid_stats.html
@@ -0,0 +1,162 @@
+{% set styles = "background-image: url('images/V3.png');" %}
+
+
+
+ {{body | markdown | safe }}
+
+
+
+ The total amount of storage (SSD, HDD, & RAM) on the grid.
+
+
+ capacity
+
+
+
+ The total number of Central Processing Unit cores (compute power) available on the grid.
+
+
+ cores
+
+
+
+ The total number of nodes on the grid. A node is a computer server 100% dedicated to the network.
+
+
+ nodes
+
+
+
+ The total number of countries where at least one node is connected and operational.
+
+
+ countries
+
+
+
+ The total number of farms on the grid. A farm is one or more nodes operated by the same entity / entities.
+
+
900+
+ farms
+
+
+
+ {# #}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/shortcodes/grid_stats_expand.html b/templates/shortcodes/grid_stats_expand.html
new file mode 100644
index 0000000..54ec357
--- /dev/null
+++ b/templates/shortcodes/grid_stats_expand.html
@@ -0,0 +1,82 @@
+{% set styles = "background-image: url('V3.png');" %}
+{% set data = load_data(url="https://gridproxy.grid.tf/stats?status=up", required=false, format="json") %}
+{% if data %}
+{% set capacity = (data.totalHru + data.totalSru) / 1024 / 1024 / 1024 / 1024 / 1024 %}
+{% set nodes = data.nodes %}
+ {% set countries = data.countries %}
+ {% set cores = data.totalCru %}
+{% endif %}
+
+{% if data %}
+
+
+
+{% endif %}
+
\ No newline at end of file
diff --git a/templates/shortcodes/header_new.html b/templates/shortcodes/header_new.html
new file mode 100644
index 0000000..da2fea5
--- /dev/null
+++ b/templates/shortcodes/header_new.html
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
Be the Internet
+
Host a node, support a decentralized future
+
By connecting a modern computer at your home or office to the ThreeFold Grid, you can provide Internet capacity to communities and builders, and be rewarded for doing this. Take part in shaping a new Internet era governed by all of us.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/hovevision.html b/templates/shortcodes/hovevision.html
new file mode 100644
index 0000000..bcae8b3
--- /dev/null
+++ b/templates/shortcodes/hovevision.html
@@ -0,0 +1,59 @@
+
+
+
+
The Vision
+
Pioneering. Empowering.
+
+
+
+
+
+
Most countries only rely on cable networks, meaning they lack control over their own digital infrastructure.
+
+
+
+
Today, most of the cloud is owned and operated by a few major companies taking all the profits and control of the Internet.
+
+
+
+
Digital experiences should not manipulate people, rather they should empower them.
+
+
+
+
Current IT infrastructures consume far too much energy. Now it is time we do something about it.
+ The ThreeFold Grid will eventually connect millions of nodes. You'll be in charge of finding
+ the best ways to operate such a network.
+
+
+
+
+
+
+
+
+ ThreeFold Grid Developer Lead
+
+
+ Take ownership of the ongoing development and documentation of the tech components that
+ constitute the ThreeFold Grid.
+
+
+
+
+
+
+
+
+ Master Technical Architect
+
+
+ Take the lead on the architectural design of the Digital Twin tech and ecosystem defining a
+ new paradigm for the tech industry.
+
+
+
+
+
+
+
+
+ Quality Assurance Engineer
+
+
+ ThreeFold is developing infrastructures and products like never before. Join the testing
+ team and ensure optimum tech releases.
+
+
+
+
+
+
+
+
+ Senior Developer
+
+
+ Join the core developer team working on our operating system Zero-OS, Digital Twin,
+ blockchain layers or other products we are building.
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/logo_slider.html b/templates/shortcodes/logo_slider.html
new file mode 100644
index 0000000..c76eade
--- /dev/null
+++ b/templates/shortcodes/logo_slider.html
@@ -0,0 +1,97 @@
+
+{#
+ {% for column in columns%}
+
+ {% if column | as_str | length < 10 %}
+
+ {{column | split(pat="{% button() %}") | slice(end=1)}}
+ {% for button in column | split(pat="{% button() %}") | slice(start=1) | join(sep="") | split(pat="{%% end %%}") | slice(end=-1) %}
+ {% set body = button %}
+ {% include "shortcodes/button.html" %}
+ {% endfor %}
+
+ {% else %}
+
+ {{column | split(pat="{% button() %}") | slice(end=1) | first | safe}}
+
+
+ {% for button in column | split(pat="{% button() %}") | slice(start=1) | join(sep="") | split(pat="{%% end %%}") | slice(end=-1) %}
+ {% set body = button %}
+ {% include "shortcodes/button.html" %}
+ {% endfor %}
+
+ {% endif %}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/templates/shortcodes/mermaid.html b/templates/shortcodes/mermaid.html
new file mode 100644
index 0000000..7ddc2e9
--- /dev/null
+++ b/templates/shortcodes/mermaid.html
@@ -0,0 +1,3 @@
+
+ {{ body }}
+
\ No newline at end of file
diff --git a/templates/shortcodes/roadmap.html b/templates/shortcodes/roadmap.html
new file mode 100644
index 0000000..206e9d2
--- /dev/null
+++ b/templates/shortcodes/roadmap.html
@@ -0,0 +1,126 @@
+
+
+
+
+
+
+
CREATION OF CORE TECH
+
+
+ +10 years of development
+
+
+
+ Built decentralized, autonomous, edge internet technology
+
+
+
+
+
+
+
+
TRACTION & EXPANSION
+
+
+ Open Source Development
+ 60+ Countries
+ 30,000+ Cores
+ 30,000,000 GB of Storage
+
+
+
+ Signed with Government of Zanzibar for a digital FreeZone and connected cyber city
+
+
+
+ Multiple global partners want to be part of the global expansion
+
+
+
+
+
+
+
+
THREEFOLD EXPANSION
+
+
+ Open Source Mode & Commercial Mode
+ Version 3 & Version 4
+
+
+
+ Service Levels & Supportability
+
+
+
+ Launch Project Internet Capacity
+
+
+
+ Expansion towards 1 million nodes
+
+
+
+
+
+
+
+
SOVEREIGNTY FOR ALL
+
+
+ +1 Million Nodes enabled
+
+
+
+ +100 Million people using our system platform.
+
+
+
+ A credible and widespread alternative to centralized clouds
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html
new file mode 100644
index 0000000..f8eaef6
--- /dev/null
+++ b/templates/shortcodes/row.html
@@ -0,0 +1,184 @@
+
+
+
+
+{% if page %}
+ {% if "](" in body %}
+
+ {% set body_arr = body | split(pat="](") %}
+ {% set body = body_arr[0] %}
+ {% for i in body_arr %}
+ {% set prev_index = loop.index0 - 1 %}
+ {% if not loop.first %}
+ {% if "![" in body_arr[prev_index] %}
+ {% set_global body = body ~ '](' ~ page.permalink ~ i %}
+ {% else %}
+ {% if i is not starting_with("http") %}
+ {% set base_url = get_url(path="") %}
+ {% set_global body = body ~ '](' ~ base_url ~ i %}
+ {% else %}
+ {% set_global body = body ~ '](' ~ i %}
+ {% endif %}
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+
+{% endif %}
+
+
+{% set body = body | markdown | replace(from='href="', to='target="_blank" href="') | safe %}
+{% set base_url = get_url(path="")%}
+{% set body = body | markdown | replace(from='target="_blank" href="' ~ base_url , to='href="' ~ base_url) | safe %}
+
+
+{% set columns = body | safe | markdown | split(pat="|||") %}
+{% set row_class = "relative lg:p-4 p-1 flex flex-col xl:flex xl:flex-row"%}
+
+
+{% if 2 < columns | length %}
+ {% set row_class = row_class ~ " lg:items-start" %}
+{% else %}
+ {% set row_class = row_class ~ " lg:items-center" %}
+{% endif %}
+
+{% set col_class = "flex-1 mb-6 md:mb-0 px-2 md:px-4 w-full" %}
+{% set row_id = '' %}
+
+{% if id %}
+{% set row_id = id %}
+
+{% endif %}
+
+
+{% if style %}
+
+{% if "centerItem" in style %}
+{% set row_class = "flex flex-col md:flex-row items-start" %}
+{% endif %}
+
+
+
+ {% if "reverse" in style %}
+ {% set row_class = "flex flex-col-reverse md:flex-row items-center" %}
+ {% endif %}
+
+ {% if "center" in style %}
+ {% set row_class = row_class ~ " text-center mx-auto justify-center" %}
+ {% set col_class = col_class ~ " m-2 lg:m-0" %}
+ {% endif %}
+
+ {% if "text-white" in style %}
+ {% set row_class = row_class ~ " text-white" %}
+ {% endif %}
+
+
+ {% if "margin" in style %}
+ {% set row_class = row_class ~ " lg:py-24 py-10" %}
+ {% set col_class = col_class ~ " m-2 lg:m-0" %}
+ {% endif %}
+
+
+ {% if "header" in style %}
+ {% set row_class = row_class ~ " h-auto xl:h-screen md:h-auto mt-4 lg:mt-0" %}
+ {% set col_class = col_class ~ " mt-3" %}
+ {% endif %}
+
+ {% if "mtop" in style %}
+ {% set row_class = row_class ~ " lg:pt-24 pt-2" %}
+ {% set col_class = col_class ~ " m-2 lg:m-0" %}
+ {% endif %}
+
+ {% if "mbottom" in style %}
+ {% set row_class = row_class ~ " lg:pb-24" %}
+ {% set col_class = col_class ~ " m-2 lg:m-0" %}
+ {% endif %}
+
+
+ {% if "lean" in style %}
+ {% set row_class = "relative flex flex-col lg:flex-row items-baseline -mx-8 sm:-mx-12 md:-mx-16 lg:-mx-20" %}
+ {% set col_class = "flex-1 m-4 lg:m-0" %}
+ {% endif %}
+
+
+ {% if "between" in style %}
+ {% set row_class = row_class ~ " lg:max-w-6xl lg:mx-auto mx-4" %}
+ {% elif "moderate" in style %}
+ {% set row_class = row_class ~ " lg:m-20" %}
+ {% endif %}
+
+
+ {% if "narrow" in style %}
+ {% set row_class = row_class ~ " lg:max-w-4xl mx-auto" %}
+ {% elif "moderate" in style %}
+ {% set row_class = row_class ~ " lg:m-20" %}
+ {% endif %}
+
+ {% if "semiNarrow" in style %}
+ {% set row_class = row_class ~ " lg:px-20 mx-auto" %}
+ {% elif "moderate" in style %}
+ {% set row_class = row_class ~ " lg:m-20" %}
+ {% endif %}
+
+{% endif %}
+
+
+{% set styles = "" %}
+{% if bgPath %}
+ {% set background_url = page.permalink ~ bgPath %}
+ {% set styles = "background: url('" ~ background_url ~ "'); background-size: cover; background-position: bottom;" %}
+ {% set row_class = row_class ~ "w-screen sm:-mx-12 md:-mx-16 lg:-mx-20" %}
+{% endif %}
+{% if bgColor %}
+ {% set styles = "background-color: " ~ bgColor ~ "; background-size: cover" %}
+ {% set row_class = row_class ~ " w-auto -mx-4 sm:-mx-12 md:-mx-16 lg:-mx-20" %}
+{% endif %}
+{% if gradient %}
+ {% set styles = "background: " ~ gradient ~ "; background-size: cover" %}
+ {% set row_class = row_class ~ " w-auto -mx-4 sm:-mx-12 md:-mx-16 lg:-mx-20" %}
+{% endif %}
+{% if bgStyle %}
+ {% if "full" in bgStyle %}
+ {% set styles = styles ~ "height: -webkit-fill-available; height: 100vh;" %}
+ {% elif "hero" in bgStyle %}
+ {% set div_class = div_class ~ " -mt-24 pt-12 " %}
+ {% endif %}
+ {% endif %}
+
+{% set url = body | split(pat="href=") | slice(start=1) | first | split(pat=">") | first | trim_start_matches(pat='"') %}
+
+
+
+ {% for column in columns %}
+
+
+ {% if column | as_str | length < 10 %}
+
+ {{ column | safe }}
+
+
+ {% else %}
+
+
+ {% if "{% mermaid() %}" in column %}
+ {% set mermaid_section = column | safe | markdown | split(pat="{% mermaid() %}") %}
+ {% set mermaid_content = mermaid_section[1] | striptags | replace(from="–", to="--")%}
+
\ No newline at end of file
diff --git a/templates/shortcodes/storymap.html b/templates/shortcodes/storymap.html
new file mode 100644
index 0000000..0c26b6c
--- /dev/null
+++ b/templates/shortcodes/storymap.html
@@ -0,0 +1,118 @@
+
+
+
+
+
+ {#
+
+
+
+
+
+
Order Placed
+
+
+
Our journey began, with a realization among a group of Internet and Cloud veterans: the existing Internet infrastructure is unsustainable.
+
#}
+
+
+
+
+
+
+ {# #}
+
+
+
+
+ {#
Phase 1:
#}
+ {#
OUR JOURNEY BEGAN
#}
+
+
OUR JOURNEY BEGAN with a realization among a group of Internet and Cloud veterans: the existing Internet infrastructure is unsustainable.
+
+
+
+
+
+
+
+
+ {# #}
+
+
+
+
+ {#
Phase 2:
#}
+ {# #}
+
+
In response, we came together with a shared mission—to design a revolutionary decentralized, open-source, inclusive, and sustainable Cloud solution for all.
+
+
+
+
+
+
+
+
+ {# #}
+
+
+
+
+ {#
Phase 3:
#}
+ {#
Today
#}
+
+
Today
+ as we embark on the commercialization phase, the ThreeFold Grid is in its third generation technology and live in ±60 countries, significant milestones in our ongoing commitment to redefine the future of the digital landscape.
+
+
+
+
+
+
+
+
+
+ {# #}
+
+
+
+
+ {#
Phase 2:
#}
+ {# #}
+
+
Project Internet Capacity is the fourth generation of the ThreeFold Grid, the accumulation of years of work by ThreeFold. Project INCA aims to be a Layer 0 for the DePIN community and involves the launch of a new token, INCA, on the Solana blockchain. Learn more here.
+
+
+
+
+
+ {#
+
+
+
+
+
+
+
+
Delivered
+
+
+
Pretium lectus quam id leo. Urna et pharetra aliquam vestibulum morbi blandit cursus risus.
The Quantum-Safe Storage System is a decentralized, globally distributed data storage system.
+
+
+ The benefits are incredible: Up to 10x more efficient (power and usage of hardware). Super reliable, data can not be lost or corrupted. Safe, private and scalable.
+
+
+ Sovereign, data is close to you in the country of your choice. Truly peer-to-peer, by everyone for everyone.
+
+
+
ULTRA RELIABLE AND SCALABLE
+
|
+
HACKER PROOF AND SECURE
+
|
+
LOW OVERHEAD AND SELF-HEALING
+
+
+ {#
+
+
#}
+
+
+
+
+
+
+
+
+
The Cloud Layer based on Zero-OS, a new Operating System
+
+
Zero-OS is a bare-metal, stateless, and efficient operating system designed to host AI, Web2, and Web3 workloads in a more decentralized manner, without compromising on security, control, and monitoring.
+
+
+
+ Zero-OS is compatible with nearly all computer hardware and is run directly on the hardware.
+
+
+ It enables anyone to become a cloud service provider without needing cloud expertise.
+ The operating system functions fully autonomously, requiring no interventions.
+
+
+
SELF HEALING
+
|
+
AUTONOMOUS
+
|
+
DEVELOPED FROM THE LINUX KERNEL
+
+
+ {#
+
+
#}
+
+
+
+
+
+
+
+
Mycelium: A Quantum Safe Storage Network
+
+
+
Mycelium is the culmination of a decade-long quest for a more efficient network system, enabling faster and more reliable communication between machines and people.
+
+
Our goal was to create a network that can identify and utilize the fastest and most direct paths between participants, remain operational even in challenging conditions (such as fiber cuts), and secure all traffic.
+
+
+ With Mycelium, data travels the most efficient routes, leveraging any available internet connection, including peer-to-peer networks like mesh wireless.
+ All traffic is end-to-end encrypted, effectively preventing man-in-the-middle attacks.
+ Each machine or user is identified by a unique cryptographic key which is linked to your ThreeFold Internet Address, ensuring that only authorized participants can access the network.
+
+
+ Spread across the world, our team has
+ built some of the world’s best Internet storage and cloud automation technologies since the ‘90s. With a strong
+ vision for the future, we’re now on a mission to create a peer-to-peer Internet that can host all of humanity’s
+ digital workloads via smart contract, removing all forms of centralization from global IT systems.
+