diff --git a/.github/workflows/tf_update_dev.yml b/.github/workflows/tf_update_dev.yml index edf3724ef..6e82fe70d 100644 --- a/.github/workflows/tf_update_dev.yml +++ b/.github/workflows/tf_update_dev.yml @@ -4,14 +4,14 @@ on: branches: [ development ] jobs: - job_one: + deploy: name: Deploy runs-on: ubuntu-latest steps: - name: pushing latest change on www2.threefold.io uses: appleboy/ssh-action@master with: - host: www2.threefold.io + host: dev.threefold.io username: webuser key: ${{ secrets.TF_SECRET }} port: 34022 @@ -20,5 +20,27 @@ jobs: git log -1 git fetch git reset --hard origin/development - sed -i "s/https:\/\/www.threefold.io/https:\/\/www2.threefold.io/g" config.toml + 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 index 7b331cbda..1e3595a3b 100644 --- a/.github/workflows/tf_update_prod.yml +++ b/.github/workflows/tf_update_prod.yml @@ -4,7 +4,7 @@ on: branches: [ master ] jobs: - job_one: + deploy: name: Deploy runs-on: ubuntu-latest steps: @@ -20,5 +20,27 @@ jobs: git log -1 git fetch git reset --hard origin/master - sed -i "s/https:\/\/www2.threefold.io/https:\/\/www.threefold.io/g" config.toml + 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_www3.yml b/.github/workflows/update_www3.yml new file mode 100644 index 000000000..b6bc8f58f --- /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 index eae91c9e6..415604bf8 100644 --- a/.gitignore +++ b/.gitignore @@ -17,7 +17,6 @@ publishtools/publishtools .cache .DS_Store src/.temp -content/news content/person content/project node_modules diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..6905868e3 --- /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 index 28581f7ff..0e0bf30b1 100644 --- a/README.md +++ b/README.md @@ -20,20 +20,50 @@ Last Updated: May 2023 ![readme](https://user-images.githubusercontent.com/43240801/236867088-56c95abd-510c-4202-b0c5-317cdfb75cb3.png) It is highly important to follow this procedure to contribute to the website content.
-__WARNING__: DO NOT commit straight into __master__ / __development__ branch. +__WARNING__: DO NOT commit straight into the __master__ / __development__ branches. -1. Create an Issue -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. +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 __'development'__ branch. -by creating a new branch from 'Master' you will be provided with the latest copy of the live website content. +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. +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 '**maste**r' (production 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`: + +``` +git clone --recursive https://github.com/threefoldfoundation/www_threefold_io.git +``` + +Now run `build.sh` to download Tailwind, build the CSS, and also build the site with Zola: + +``` +cd 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! \ No newline at end of file diff --git a/config.toml b/config.toml index dc2f9c527..5facafe95 100644 --- a/config.toml +++ b/config.toml @@ -1,9 +1,9 @@ # The URL the site will be built for -base_url = "https://www2.threefold.io" +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" +description = "Our global digital backbone" # When set to "true", a feed is automatically generated. generate_feed = true @@ -95,7 +95,3 @@ paginate_path = "people/memberships" [extra] # Put all your custom variables here - - - - diff --git a/content/_index.md b/content/_index.md index a0e015c95..97c5a3fc0 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,12 +1,12 @@ --- title: "Home" -description: "A global movement together building an open-source, community-driven, decentralized Internet – from the ground up." # quotation marks to allow colons where used +description: "ThreeFold is the world’s first system enabling anyone to become a cloud and internet service provider." # quotation marks to allow colons where used date: 2018-09-14T21:00:00-05:00 updated: 2021-02-20T14:40:00-06:00 draft: false extra: author: Your name here - imgPath: images/threefold_globe.png + imgPath: home/header_new.jpeg --- @@ -41,7 +41,7 @@ ThreeFold is a peer-to-peer open-source Internet platform that connects users di ||| - + {% end %} diff --git a/content/about/100_mission.png b/content/about/100_mission.png deleted file mode 100644 index ad8e09889..000000000 Binary files a/content/about/100_mission.png and /dev/null differ diff --git a/content/about/BG_wide.png b/content/about/BG_wide.png new file mode 100644 index 000000000..9fa758c08 Binary files /dev/null and b/content/about/BG_wide.png differ diff --git a/content/about/KDS.png b/content/about/KDS.png new file mode 100644 index 000000000..3379ff9ad Binary files /dev/null and b/content/about/KDS.png differ diff --git a/content/about/about_header.png b/content/about/about_header.png new file mode 100644 index 000000000..7ca5ccbad Binary files /dev/null and b/content/about/about_header.png differ diff --git a/content/about/about_header_geometric.png b/content/about/about_header_geometric.png new file mode 100644 index 000000000..cb57bddc0 Binary files /dev/null and b/content/about/about_header_geometric.png differ diff --git a/content/about/about_new.png b/content/about/about_new.png new file mode 100644 index 000000000..6f0eb7d90 Binary files /dev/null and b/content/about/about_new.png differ diff --git a/content/about/authenticity.png b/content/about/authenticity.png deleted file mode 100644 index 105a6642e..000000000 Binary files a/content/about/authenticity.png and /dev/null differ diff --git a/content/about/authenticity1.png b/content/about/authenticity1.png new file mode 100644 index 000000000..d6c1f514d Binary files /dev/null and b/content/about/authenticity1.png differ diff --git a/content/about/bg_new.jpg b/content/about/bg_new.jpg new file mode 100644 index 000000000..28caafe10 Binary files /dev/null and b/content/about/bg_new.jpg differ diff --git a/content/about/checker1.png b/content/about/checker1.png new file mode 100644 index 000000000..245e7fce9 Binary files /dev/null and b/content/about/checker1.png differ diff --git a/content/about/checker2.png b/content/about/checker2.png new file mode 100644 index 000000000..245e7fce9 Binary files /dev/null and b/content/about/checker2.png differ diff --git a/content/about/checker3.png b/content/about/checker3.png new file mode 100644 index 000000000..26cdabb31 Binary files /dev/null and b/content/about/checker3.png differ diff --git a/content/about/checker4.png b/content/about/checker4.png new file mode 100644 index 000000000..4ec1b9e3f Binary files /dev/null and b/content/about/checker4.png differ diff --git a/content/about/checkerboard.png b/content/about/checkerboard.png new file mode 100644 index 000000000..dd16e12ec Binary files /dev/null and b/content/about/checkerboard.png differ diff --git a/content/about/checkerboard1.jpg b/content/about/checkerboard1.jpg new file mode 100644 index 000000000..264abf5b7 Binary files /dev/null and b/content/about/checkerboard1.jpg differ diff --git a/content/about/checkerboard2.jpg b/content/about/checkerboard2.jpg new file mode 100644 index 000000000..9cff677a2 Binary files /dev/null and b/content/about/checkerboard2.jpg differ diff --git a/content/about/community.png b/content/about/community.png new file mode 100644 index 000000000..087e65a39 Binary files /dev/null and b/content/about/community.png differ diff --git a/content/about/community2.png b/content/about/community2.png new file mode 100644 index 000000000..9d7c76304 Binary files /dev/null and b/content/about/community2.png differ diff --git a/content/about/earth.png b/content/about/earth.png new file mode 100644 index 000000000..6e8c29b24 Binary files /dev/null and b/content/about/earth.png differ diff --git a/content/about/earth2.png b/content/about/earth2.png new file mode 100644 index 000000000..a11d4a47a Binary files /dev/null and b/content/about/earth2.png differ diff --git a/content/about/globe_mission.png b/content/about/globe_mission.png deleted file mode 100644 index e641432d3..000000000 Binary files a/content/about/globe_mission.png and /dev/null differ diff --git a/content/about/greener.png b/content/about/greener.png new file mode 100644 index 000000000..5c4f505a5 Binary files /dev/null and b/content/about/greener.png differ diff --git a/content/about/header_about.png b/content/about/header_about.png new file mode 100644 index 000000000..ce17d07a5 Binary files /dev/null and b/content/about/header_about.png differ diff --git a/content/about/human_right.png b/content/about/human_right.png new file mode 100644 index 000000000..6f4348703 Binary files /dev/null and b/content/about/human_right.png differ diff --git a/content/about/index.md b/content/about/index.md index b7f48d372..c8fb752da 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -1,188 +1,143 @@ --- title: "About" +description: "About a decade ago, a group of passionate Internet & Cloud veterans came together to build a system." # quotation marks to allow colons where used template: "page.html" insert_anchor_links: "left" +extra: + author: Your name here + imgPath: about/people.png --- -{% row(style="center") %} +
-
-
-
-
-
-
-
-
-
-
-
-
+{% row(style="header") %} -### **Founded by Internet 1.0 Pioneers** +![Image](people.png#mx-auto) -About a decade ago, a group of passionate Internet & Cloud veterans came together to build
a new foundational layer for a better Internet – more like how the Internet was originally intended. +||| -
+## Founded by **Internet 1.0 Pioneers** -#### **30+** Years Experience | **7** Past Exits | **Thousands** of Community Members - -
-
-
-
-
-
-
-
-
-
-
-
-
+About a decade ago, a group of passionate Internet & cloud veterans came together to build a system which can grow to a scalable, safe, compatible, and co-owned IT infrastructure. {% end %} -{% row(style="center narrow mtop") %} -![Image](global.png#medium) -### **Supported by a global community** -Thousands of individuals and organizations are now supporting the ThreeFold ecosystem,
by connecting capacity, deploying workloads, holding tokens, and a lot more. + -
+{% row( style="center narrow mtop") %} - +## **Our Why** + +Pioneering a new digital era, ThreeFold empowers communities to reclaim digital sovereignty and promote collective prosperity online. {% end %} -{% row(style="center narrow mtop") %} +{% row( style="center semiNarrow") %} -![Image](mission.png#medium) +
-### **Our mission is to empower** - -The world needs a safe infrastructure to deploy cutting edge technology, where everyone can take part. We exist to help others to create on top of what the team has built, to enable others to become truly decentralized, and to make it easy for everyone to play their role within this new ecosystem. +![Image](nations.png#mx-auto)
+ +#### **Empower Nations** + +Most countries only rely on cable networks, meaning they lack control over their own digital infrastructure. + + +
+ +||| + +
+ +![Image](own.png#mx-auto) +
-
-
-
+ +#### **Own Your Data** + +Today, most of the cloud is owned and operated by few major companies taking all the profits and control of Internet. + +
{% end %} -{% row(style="center narrow mtop") %} +{% row( style="center semiNarrow mbottom") %} -![Image](vision.png#medium) +
-### **Our vision is a better digital world** +![Image](human_right.png#mx-auto) + +
+ +#### **A Basic Human Right** + +Billions of people are being left behind due to the IT landscape’s centralized infrastructure. + +
+ +||| + +
+ +![Image](greener.png#mx-auto) + +
+ +#### **A Greener Planet Earth** + +Current IT infrastructures consume far too much energy. It's time we do something about it. + +
+ +{% end %} + + +
+ + + + +
+ +
+ +{% row( style="centerItem center semiNarrow margin") %} + + +## **Our Mission** + +![Image](mission.png#mx-auto) + +
+ +#### To Empower Human Potential + +The world needs a safe infrastructure to deploy cutting edge technology, where everyone can take part. We exist to make cloud capacity available everywhere on Earth, to help others host and create new digital experiences and to enable true decentralization. + +||| + +## **Our Vision** + +![Image](vision.png#mx-auto) + +
+ +#### A Better Digital World We believe in an Internet where everyone can communicate freely, exchange fairly, access educational information, and own their own data. Our digital experiences should not addict nor manipulate, rather empower. -
-
-
-
-
{% end %} -{% row( style="center between mtop") %} +
-### **Our values define us** -Everything we do must put the planet and people first. - -{% end %} - -{% row( style="center between mbottom") %} - -![Image](green_.png#medium) - -### **Planet-First** - -Our solutions must be sustainable. There is no Planet B. - -
- -And the Internet is consumed a surprisingly large amount of the world’s energy, ±10%. This is why ThreeFold has designed with efficiency in mind to create the most sustainable Internet infrastructure in the world. We must respect our mother earth. - -||| - -![Image](empowering_.png#medium) - -### **People-First** - -We empower self-sovereignty and autonomy. - -
- -Equality, diversity, and inclusion are key to our vision of an Internet for everyone, everywhere. ThreeFold has created a participatory infrastructure and movement, and is prioritizing efforts to bring a more accessible Internet to developing regions around the world. - -{% end %} - -{% row(style="center narrow mtop") %} - -### **And these tools guide us** - -{% end %} - -{% row(style="center narrow mbottom") %} - -
-
- -![Image](open.png#medium) - -#### **Open-Source** -Collaboration and openness are key to building a better world. - -
-
- -||| - -
-
- -![Image](simple.png#medium) - -#### **Simplicity** -Fostering clarity. Driving innovation. Enabling scalability. - -
-
- -||| - -
-
- -![Image](authenticity.png#medium) - -#### **Authenticity** -We are genuine and vulnerable. - -
-
- -{%end %} - - - -{% row(style="center margin") %} - -### **Join in** - -Connect, share and collaborate with our open community to expand ThreeFold's horizons.
Bring your ideas and let’s co-create together! - -
- - - -{% end %} +
\ No newline at end of file diff --git a/content/about/mission.png b/content/about/mission.png index 83f16d383..483b02b18 100644 Binary files a/content/about/mission.png and b/content/about/mission.png differ diff --git a/content/about/mission_header.png b/content/about/mission_header.png deleted file mode 100644 index 0ffa57fcc..000000000 Binary files a/content/about/mission_header.png and /dev/null differ diff --git a/content/about/mission_roadmap.png b/content/about/mission_roadmap.png deleted file mode 100644 index eaf8a392a..000000000 Binary files a/content/about/mission_roadmap.png and /dev/null differ diff --git a/content/about/nations.png b/content/about/nations.png new file mode 100644 index 000000000..4f630b7dc Binary files /dev/null and b/content/about/nations.png differ diff --git a/content/about/node_mission.png b/content/about/node_mission.png deleted file mode 100644 index 3f9abb621..000000000 Binary files a/content/about/node_mission.png and /dev/null differ diff --git a/content/about/opensource.png b/content/about/opensource.png new file mode 100644 index 000000000..7b78aa282 Binary files /dev/null and b/content/about/opensource.png differ diff --git a/content/about/opensource1.png b/content/about/opensource1.png new file mode 100644 index 000000000..a539befcb Binary files /dev/null and b/content/about/opensource1.png differ diff --git a/content/about/own.png b/content/about/own.png new file mode 100644 index 000000000..8aa3d75ce Binary files /dev/null and b/content/about/own.png differ diff --git a/content/about/people.png b/content/about/people.png new file mode 100644 index 000000000..cfd5c41bf Binary files /dev/null and b/content/about/people.png differ diff --git a/content/about/people_2.png b/content/about/people_2.png new file mode 100644 index 000000000..0ec6abf18 Binary files /dev/null and b/content/about/people_2.png differ diff --git a/content/about/people_mission.png b/content/about/people_mission.png deleted file mode 100644 index 5b9e53bf8..000000000 Binary files a/content/about/people_mission.png and /dev/null differ diff --git a/content/about/peoplefirst.png b/content/about/peoplefirst.png new file mode 100644 index 000000000..0050228e2 Binary files /dev/null and b/content/about/peoplefirst.png differ diff --git a/content/about/planetfirst.png b/content/about/planetfirst.png new file mode 100644 index 000000000..8c69bff09 Binary files /dev/null and b/content/about/planetfirst.png differ diff --git a/content/about/planetfirst1.png b/content/about/planetfirst1.png new file mode 100644 index 000000000..b1392de98 Binary files /dev/null and b/content/about/planetfirst1.png differ diff --git a/content/about/simplicity.png b/content/about/simplicity.png new file mode 100644 index 000000000..3c1febfc4 Binary files /dev/null and b/content/about/simplicity.png differ diff --git a/content/about/vision.png b/content/about/vision.png index 7aa7ae505..f97c00e70 100644 Binary files a/content/about/vision.png and b/content/about/vision.png differ diff --git a/content/blog/access_threefold_token_and_provide_liquidity_on_stellar/index.md b/content/blog/access_threefold_token_and_provide_liquidity_on_stellar/index.md index fe18760c2..55f5f6ed8 100644 --- a/content/blog/access_threefold_token_and_provide_liquidity_on_stellar/index.md +++ b/content/blog/access_threefold_token_and_provide_liquidity_on_stellar/index.md @@ -107,7 +107,7 @@ The time has come to fund your Albedo account with TFT. Simply swap other assets
-*Good to know: Albedo doesn’t provide a direct fiat gateway. Visit our TFT knowledge base to discover all the ways you can [buy TFT](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html), including fiat options.* +*Good to know: Albedo doesn’t provide a direct fiat gateway. Visit our TFT knowledge base to discover all the ways you can [buy TFT](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/buy_sell_tft.html), including fiat options.* ### Step 2.2.A: Deposit TFT to your Albedo account diff --git a/content/blog/an_org_building_a_decentralized_internet/index.md b/content/blog/an_org_building_a_decentralized_internet/index.md index 433850f17..f8606eea9 100644 --- a/content/blog/an_org_building_a_decentralized_internet/index.md +++ b/content/blog/an_org_building_a_decentralized_internet/index.md @@ -78,7 +78,7 @@ Much of what you see today at Threefold.io is the work of 100s of decentralized There are many discussions happening on the [Threefold Forum](https://forum.threefold.io) about partnerships with other projects and how we can better support both the crypto landscape and the general internet user base. Even by just joining discussions on the Threefold Forum and providing your input and ideas you can help to make sure that the internet of tomorrow is built for and by the users of tomorrow. but there are lots of ways to contribute: -- You can purchase the TFT token following [this guide](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html). +- You can purchase the TFT token following [this guide](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html). - You can learn about farming [here](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__farming_intro). - You can learn more about the Threefold Cloud and Deploying [here](https://library.threefold.me/info/threefold#/cloud/threefold__cloud_home). diff --git a/content/blog/bitcoin_threefold/index.md b/content/blog/bitcoin_threefold/index.md index 2ed36c930..67eafff62 100644 --- a/content/blog/bitcoin_threefold/index.md +++ b/content/blog/bitcoin_threefold/index.md @@ -56,4 +56,4 @@ But what differentiates ThreeFold the most from the crowd is that it’s a proje
-Stake your claim in the decentralized Internet by [hosting the Internet](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__farming_intro) or [getting TFT](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) today. \ No newline at end of file +Stake your claim in the decentralized Internet by [hosting the Internet](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__farming_intro) or [getting TFT](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html) today. \ No newline at end of file diff --git a/content/blog/decentralised_internet_india/index.md b/content/blog/decentralised_internet_india/index.md index 3195e9e8c..a27a632ff 100644 --- a/content/blog/decentralised_internet_india/index.md +++ b/content/blog/decentralised_internet_india/index.md @@ -14,6 +14,8 @@ extra: ## How would Decentralisation of the Internet help India? +*"This article was originally published by Ashish Bansal, a former member of ThreeFold Foundation."* + *Ashish Bansal has been a member of the ThreeFold support team since October 2021. He was born in India. Ashish believes that we all deserve a better internet which is free, decentralized and equal for all.*
@@ -81,4 +83,4 @@ To know more of ThreeFold technology and start farming: - Dive into [the ThreeFold Library](https://library.threefold.me) - Get a node from [the Official ThreeFold webshop]( https://marketplace.3node.global/index.php) - Build your [own node](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__diy_guide) -- Or join us on [our two-way chat](https://t.me/threefold) \ No newline at end of file +- Or join us on [our two-way chat](https://t.me/threefold) diff --git a/content/blog/future_tft_ecosystem/index.md b/content/blog/future_tft_ecosystem/index.md index 494f9609d..ca9a44b21 100644 --- a/content/blog/future_tft_ecosystem/index.md +++ b/content/blog/future_tft_ecosystem/index.md @@ -28,7 +28,7 @@ That doesn’t have to be a bad thing, though. And it won’t be, for projects l
-We believe in decentralization. And we believe that the future is decentralized. DeFi is great and fortunately, many decentralized alternatives already exist, with thriving ecosystems and communities. There are many options to [buy and sell TFT](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) in a decentralized way, including multiple options within the [Stellar ecosystem](https://threefold.io/blog/thriving_with_stellar/) – and we’re also exploring meaningful partnership opportunities with Algorand. Both Stellar and Algorand already provide everything we need for a healthy financial ecosystem and offer various functions crucial for the [TFT](https://forum.threefold.io/t/the-potential-of-the-threefold-token-tft/1796) ecosystem – from order books to wallets to AMM liquidity pools and on/off ramp options. And both have huge, thriving communities. +We believe in decentralization. And we believe that the future is decentralized. DeFi is great and fortunately, many decentralized alternatives already exist, with thriving ecosystems and communities. There are many options to [buy and sell TFT](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/buy_sell_tft.html) in a decentralized way, including multiple options within the [Stellar ecosystem](https://threefold.io/blog/thriving_with_stellar/) – and we’re also exploring meaningful partnership opportunities with Algorand. Both Stellar and Algorand already provide everything we need for a healthy financial ecosystem and offer various functions crucial for the [TFT](https://forum.threefold.io/t/the-potential-of-the-threefold-token-tft/1796) ecosystem – from order books to wallets to AMM liquidity pools and on/off ramp options. And both have huge, thriving communities.
diff --git a/content/blog/planet_first_people_first/index.md b/content/blog/planet_first_people_first/index.md index e37cb46d2..f735e243e 100644 --- a/content/blog/planet_first_people_first/index.md +++ b/content/blog/planet_first_people_first/index.md @@ -20,7 +20,7 @@ Today, the world is facing an unprecedented number of crises and disruptions ste
-We have always believed that technology can help some of humanity’s greatest challenges – for example by providing the foundation for an interconnected world that can enable abundance to spread. ThreeFold has focused on developing a more reliable Internet which can meet the demands and challenges of the future. A [more sustainable](https://threefold.io/blog/planting_the_seeds/) Internet that uses [less energy](https://threefold.io/blog/for_our_planet/) and is offsetting its carbon emissions by supporting tree planting and other impact initiatives. And an Internet that empowers us with digital [sovereignty](https://threefold.io/blog/threefold_data_sovereignty/) while providing high levels of [privacy and security](https://forum.threefold.io/t/critical-security-updates-for-apple-and-google-underline-need-for-secure-it-ecosystem/1271?u=hannahcordes). One that is [inclusive](https://threefold.io/blog/more_inclusive_internet/) by being more affordable and accessible. +We have always believed that technology can help some of humanity’s greatest challenges – for example by providing the foundation for an interconnected world that can enable abundance to spread. ThreeFold has focused on developing a more reliable Internet that can meet the demands and challenges of the future. A [more sustainable](https://threefold.io/blog/planting_the_seeds/) Internet that uses [less energy](https://threefold.io/blog/for_our_planet/) and is offsetting its carbon emissions by supporting tree planting and other impact initiatives. And an Internet that empowers us with digital [sovereignty](https://threefold.io/blog/threefold_data_sovereignty/) while providing high levels of [privacy and security](https://forum.threefold.io/t/critical-security-updates-for-apple-and-google-underline-need-for-secure-it-ecosystem/1271?u=hannahcordes). One that is [inclusive](https://threefold.io/blog/more_inclusive_internet/) by being more affordable and accessible.
@@ -40,7 +40,7 @@ ThreeFold aims to deliver on our promise of providing better solutions for our p
-Our approach is also based on community and connection. We’re determined to build better, sustainable and inclusive systems for the planet and people – from realizing the Internet of Internets on a global scale to reimagining business, governance, finance, education and more in order to provide better alternatives for people, enterprises and governments. And we are in dialogue and partnership with global leaders who share a similar vision. +Our approach is also based on community and connection. We’re determined to build better, sustainable, and inclusive systems for the planet and people – from realizing the Internet of Internets on a global scale to reimagining business, governance, finance, education, and more in order to provide better alternatives for people, enterprises, and governments. And we are in dialogue and partnership with global leaders who share a similar vision.
@@ -48,11 +48,11 @@ Here are three examples of the impact we’re creating together:
-* Together with [Take Action Global](https://threefold.io/blog/planting_the_seeds/), we’re offsetting the ThreeFold Grid’s emissions three times through planting and protecting trees +* Together with [Take Action Global](https://threefold.io/blog/planting_the_seeds/), we’re offsetting the ThreeFold Grid’s emissions three times by planting and protecting trees
-* Together with [IETSA](https://threefold.io/news/post/threefold_ietsa/), we’re making the decentralized Internet more accessible in underserved South African communities while also providing education in blockchain and Web 3.0 technologies +* Together with [IETSA](https://www.threefold.io/newsroom/threefold-ietsa/), we’re making the decentralized Internet more accessible in underserved South African communities while also providing education in blockchain and Web 3.0 technologies
@@ -64,15 +64,15 @@ We strongly believe in the ThreeFold Law which states that any good you do will
-We’re aware that this mission is a big one. We’re aware how aspirational it is. We’re aware that we are not perfect. And we realize that changing the world for the better requires patience and community. We’re in it for the [long run](https://threefold.io/blog/four_phases_of_threefold/) and we’re in it together. +We’re aware that this mission is a big one. We’re aware of how aspirational it is. We’re aware that we are not perfect. And we realize that changing the world for the better requires patience and community. We’re in it for the [long run](https://threefold.io/blog/four_phases_of_threefold/) and we’re in it together.
-*“It's an honor every day to wake up and be a part of a global movement of people who are trying to build a better Internet for humanity that can uplift and empower.” – [Adnan Fatayerji](https://threefold.io/news/post/threefold_cybernews/)* +*“It's an honor every day to wake up and be a part of a global movement of people who are trying to build a better Internet for humanity that can uplift and empower.” – [Adnan Fatayerji](https://www.threefold.io/newsroom/threefold-cybernews/)*
-ThreeFold is more than a company or a project. ThreeFold is a global movement consisting of like-minded individuals and partners who share these values and vision. A movement united in our shared beliefs in open source, peer-to-peer, equality and inclusion. By coming together to build a better Internet, we can create the foundation for a better world. We’re incredibly proud of the ThreeFold community and ecosystem. This beautiful community consists of open-minded, passionate and determined people from all around the world, just like you. We’re dreamers, creators, builders and change makers. +ThreeFold is more than a company or a project. ThreeFold is a global movement consisting of like-minded individuals and partners who share these values and vision. A movement united in our shared beliefs in open source, peer-to-peer, equality, and inclusion. By coming together to build a better Internet, we can create the foundation for a better world. We’re incredibly proud of the ThreeFold community and ecosystem. This beautiful community consists of open-minded, passionate, and determined people from all around the world, just like you. We’re dreamers, creators, builders, and change-makers.
@@ -80,7 +80,7 @@ ThreeFold is more than a company or a project. ThreeFold is a global movement co ## We are part of the solution -There are many great projects and organizations out there that also follow the planet-first people-first philosophy. Like [Ecosia](https://www.ecosia.org/?c=en) – the search engine that plants trees and thereby positively impacts ecosystems, communities and our planet. Like [ShareTheMeal](https://sharethemeal.org/en/index.html) – the world’s first app against global hunger that enables you to ‘share the meal’ with a child in need with one simple tap on your phone. Like [Patagonia](https://www.patagonia.com/home/?utm_source=actionworks&utm_medium=referral&utm_campaign=global_nav&utm_content=link) – a designer of outdoor clothing and sports gear that turned into an environmental activist. And like so many others. +There are many great projects and organizations out there that also follow the planet-first people-first philosophy. Like [Ecosia](https://www.ecosia.org/?c=en) – the search engine that plants trees and thereby positively impacts ecosystems, communities, and our planet. Like [ShareTheMeal](https://sharethemeal.org/en/index.html) – the world’s first app against global hunger that enables you to ‘share the meal’ with a child in need with one simple tap on your phone. Like [Patagonia](https://www.patagonia.com/home/?utm_source=actionworks&utm_medium=referral&utm_campaign=global_nav&utm_content=link) – a designer of outdoor clothing and sports gear that turned into an environmental activist. And like so many others.
@@ -102,4 +102,4 @@ If not us, who? If not now, when? * *[Join](https://t.me/threefold) this growing movement* * *[Buy](https://marketplace.3node.global/) or [build](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__diy_guide) a 3Node and be the Internet* -* *[Buy](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) TFT* +* *[Buy](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/buy_sell_tft.html) TFT* diff --git a/content/blog/reliability/index.md b/content/blog/reliability/index.md index 52d1f428c..7ef9e308f 100644 --- a/content/blog/reliability/index.md +++ b/content/blog/reliability/index.md @@ -10,6 +10,7 @@ taxonomies: categories: [foundation] extra: imgPath: reliability.png + isFeatured: true --- In today's digital landscape, the development of a decentralized open-source Internet infrastructure marks a significant leap forward. However, while the foundational structure of this innovation brings promise, its inherent reliability isn't guaranteed. After more than five years of building and expanding the open-source ThreeFold Grid, it's now time we pivot towards commercialization. Ensuring a robust, dependable, and trustworthy offering becomes paramount. In this post, we'll share the various ways that the ThreeFold Grid is and will become reliable. diff --git a/content/blog/solar_comparison/index.md b/content/blog/solar_comparison/index.md new file mode 100644 index 000000000..ed04b50b0 --- /dev/null +++ b/content/blog/solar_comparison/index.md @@ -0,0 +1,51 @@ +--- +id: solar_comparison +title: "Exploring the Parallels Between Decentralized Energy and Internet Capacity" +image_caption: Solar and ThreeFold +description: Read how the decentralization of the energy and internet industries are empowering individuals and communities. +date: 2024-03-01 +taxonomies: + people: [emilie_ouwerx] + tags: [threefold_grid, peer_to_peer, community, farming] + categories: [foundation] +extra: + imgPath: solar_comparison.png +--- + +In recent years, we've witnessed a transformation in how energy is generated and distributed, marking a shift towards a more sustainable and democratic system. This change has been most notable in the transition from centralized energy production, particularly nuclear power, to decentralized solar energy. The latter empowers individuals and communities to produce their energy locally, an alternative to the traditional approach to power generation. + +
+ +Similarly, the Internet landscape, typically dominated by massive data centers and centralized servers, is experiencing a shift towards decentralization. These movements share a common ethos to empower individuals and communities. + +### **The Rise of Decentralized Solar Energy** + +Decentralized solar energy has transformed the landscape of power generation. Unlike the centralized model, where nuclear power plants are often miles away from the end-users and controlled by large corporations or government bodies, solar energy allows for energy production right where it's needed—at home or within the community. + +
+ +By installing solar panels on rooftops or creating local solar farms, individuals can capture the sun's energy directly. This shift not only reduces our dependency on distant power plants and the complex grid systems but also mitigates the risks associated with them. + +
+ +This localized energy production model enhances sustainability by tapping into an inexhaustible natural resource and encourages a more environmentally conscious and self-sufficient society. It signifies a move away from the centralized, traditional systems of energy production, returning power to the people and prioritizing the planet's well-being. + +### **ThreeFold: Pioneering a Decentralized Digital Future** + +Parallel to the energy sector's evolution, the digital world is also undergoing a transformation, led by innovative platforms like ThreeFold. Just as decentralized solar energy provides an alternative to the centralized power generation model, ThreeFold is reshaping the cloud computing landscape with its autonomous edge cloud. + +
+ +ThreeFold's model deviates from the norm, where cloud services are dominated by a few massive data centers. Instead, we depend on our global network of independent nodes set up by individuals and businesses to contribute their own computing and storage resources to the cloud. This approach democratizes access to cloud resources, bolstering data privacy, security, and resilience against potential outages or cyberattacks. + +
+ +![Image](solar.png#mx-auto) + +
+ +Beyond merely disrupting the existing model, ThreeFold aims to foster a more sustainable, efficient, and user-centric internet. Distributing decentralized infrastructure worldwide reduces the environmental footprint associated with large data centers and promotes fairer internet resource distribution. + +
+ +Both the shift towards decentralized solar energy and ThreeFold's revolutionary approach to cloud computing reflect a broader movement towards decentralization. This movement is not just about bringing alternatives to existing systems but about creating a more inclusive, resilient, and sustainable future for all. diff --git a/content/blog/solar_comparison/solar.png b/content/blog/solar_comparison/solar.png new file mode 100644 index 000000000..6c70d8022 Binary files /dev/null and b/content/blog/solar_comparison/solar.png differ diff --git a/content/blog/solar_comparison/solar_comparison.png b/content/blog/solar_comparison/solar_comparison.png new file mode 100644 index 000000000..73a80d8b2 Binary files /dev/null and b/content/blog/solar_comparison/solar_comparison.png differ diff --git a/content/blog/stake_tft_become_validator/index.md b/content/blog/stake_tft_become_validator/index.md index f9d38234a..2eb33bad5 100644 --- a/content/blog/stake_tft_become_validator/index.md +++ b/content/blog/stake_tft_become_validator/index.md @@ -61,7 +61,7 @@ ThreeFold is realizing the initial promise of an open-source, peer-to-peer Inter
* **Step 1**: Create an account (wallet) with the [ThreeFold Connect](https://library.threefold.me/info/threefold#/tokens/threefold__threefold_connect) app. -* **Step 2**: Buy the required amount of TFT to reserve your validator. Find all TFT buying options [here](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html). +* **Step 2**: Buy the required amount of TFT to reserve your validator. Find all TFT buying options [here](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/buy_sell_tft.html). * **Step 3**: Log into the [ThreeFold Forum](https://forum.threefold.io/) using ThreeFold Connect and go to the [L2 Validator Signup](https://forum.threefold.io/c/dao/validators-signup-l2/83) category. * **Step 4**: Follow the [registration instructions](https://forum.threefold.io/t/procedure-to-register-your-l2-validator-node/1864) to become a L2 Validator, and review the checklist of your application before submission. diff --git a/content/blog/three_layers/index.md b/content/blog/three_layers/index.md new file mode 100644 index 000000000..40e0415c3 --- /dev/null +++ b/content/blog/three_layers/index.md @@ -0,0 +1,52 @@ +--- +id: three_layers +title: "How the Internet Works" +image_caption: How the Internet Works +description: Learn about the layers of the Internet to grasp how digital information is processed, stored, and accessed. +date: 2024-03-04 +taxonomies: + people: [emilie_ouwerx] + tags: [threefold_grid, peer_to_peer, technology] + categories: [foundation] +extra: + imgPath: three_layers.png + isFeatured: true +--- + +The Internet is complex and multi-layered, touching virtually every aspect of our modern lives. At its core, it comprises three essential layers: compute & storage, network, and application. Understanding these components is key to grasping how digital information is processed, stored, and accessed across the globe. + +
+ +This blog post will explore these foundational aspects of the Internet and share insights into ThreeFold's journey in reshaping the global Cloud & Internet infrastructure. + +### **The Three Layers of the Internet** + +Understanding the three fundamental layers of the Internet’s architecture is crucial to grasping how digital services are delivered to end-users around the globe. Let's break down these components: + +#### **Compute & Storage** + +Compute is the powerhouse of the Internet, providing the necessary processing power to run the various software applications and services that populate the Internet. This involves everything from simple web hosting to complex computational tasks like data analysis and artificial intelligence. In essence, it's the brain behind the operations, turning code into action. Compute resources are provided by servers located in data centers, cloud platforms, and increasingly, decentralized networks. + +
+ +Storage acts as the Internet's memory, a space where data is securely kept for future access. This includes everything from your personal photos and documents to the databases that store website content and user information. Efficient and reliable storage solutions are vital for keeping the Internet's vast amount of information organized and accessible. + +#### **Network** + +The network is the Internet's circulatory system, consisting of the physical and virtual connections that enable data to flow from one point to another. This includes the cables, satellites, routers, and protocols that transport information across the globe, ensuring that an email or a video call can reach its destination in milliseconds. + +#### **Applications** + +At the top of the Internet stack are applications — the user-facing software that provides the services and experiences we interact with daily. Applications range from web browsers and social media to more complex systems like blockchain platforms and decentralized apps (dApps). They are the interface through which users interact with the digital world. + +### **Blockchain's Place in the Application Layer** + +Blockchain technology, known for its decentralized and secure nature, resides within the application layer of the Internet. It offers a revolutionary approach to conducting transactions, managing data, and establishing trust online, offering a level of security, transparency, and efficiency previously unattainable with traditional centralized systems. As a part of the application layer, blockchain applications leverage the underlying compute, storage, and network infrastructure to operate efficiently and securely. The full blockchain landscape can run on top of ThreeFold’s Internet stack. + +### **ThreeFold Today: Focusing on Compute and Storage** + +At ThreeFold, we're committed to enhancing the foundational layers of the Internet, with a particular focus to date on compute and storage. Our journey has been driven by the belief that decentralizing these components can lead to a more secure, efficient, and equitable digital world. By distributing compute power and storage capacity across a global network, we aim to reduce reliance on centralized data centers, mitigate privacy and security risks, and lower the environmental impact of digital infrastructure. + +### **The Road Ahead: Expanding to Connectivity** + +Looking to the future, ThreeFold plans to integrate advanced connectivity solutions into our ecosystem. Recognizing the importance of robust network infrastructure, we're dedicated to improving bandwidth and reducing latency to ensure seamless access to digital services for everyone, everywhere. This expansion is not only about enhancing Internet performance but also about empowering blockchain applications and other innovations that depend on strong connectivity to thrive. \ No newline at end of file diff --git a/content/blog/three_layers/three_layers.png b/content/blog/three_layers/three_layers.png new file mode 100644 index 000000000..411791970 Binary files /dev/null and b/content/blog/three_layers/three_layers.png differ diff --git a/content/blog/threefold_cooperative/index.md b/content/blog/threefold_cooperative/index.md index a1600cd44..f770af934 100644 --- a/content/blog/threefold_cooperative/index.md +++ b/content/blog/threefold_cooperative/index.md @@ -10,6 +10,7 @@ taxonomies: categories: [foundation] extra: imgPath: threefold_cooperative.png + isFeatured: true --- In the next phase of ThreeFold, we are focused on utilization and commercialization. With this comes a requirement for our project to establish reliable and trusted systems that allow anyone to enter the ecosystem with confidence. diff --git a/content/blog/thriving_with_stellar/index.md b/content/blog/thriving_with_stellar/index.md index 5d22b3e4b..907ec32fd 100644 --- a/content/blog/thriving_with_stellar/index.md +++ b/content/blog/thriving_with_stellar/index.md @@ -110,7 +110,7 @@ Visit the linked library pages to find detailed step-by-step guides for all meth ## What’s next for TFT -One of our key objectives is to make TFT more accessible. Already, there are many options to [buy and sell TFT](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) – like [gettft.com](https://gettft.com/) or Stellar’s DEX, and more coming soon. We’re also exploring the feasibility and synergies for a meaningful partnership with Algorand – including making TFT available on Algorand order books.  +One of our key objectives is to make TFT more accessible. Already, there are many options to [buy and sell TFT](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html) – like [gettft.com](https://gettft.com/) or Stellar’s DEX, and more coming soon. We’re also exploring the feasibility and synergies for a meaningful partnership with Algorand – including making TFT available on Algorand order books. 
diff --git a/content/careers/index.md b/content/careers/index.md index 8cf90f4e8..93b9a5858 100644 --- a/content/careers/index.md +++ b/content/careers/index.md @@ -22,7 +22,8 @@ title: "Careers" {% row(bgPath="team_joinus.jpg" style="center margin") %} -# **Join Our Team** + +

Join Our Team

{% end %} diff --git a/content/community/community_developers.png b/content/community/community_developers.png deleted file mode 100644 index 0b7ba09b5..000000000 Binary files a/content/community/community_developers.png and /dev/null differ diff --git a/content/community/community_header.jpg b/content/community/community_header.jpg deleted file mode 100644 index a03ce385c..000000000 Binary files a/content/community/community_header.jpg and /dev/null differ diff --git a/content/community/community_header_home.jpg b/content/community/community_header_home.jpg deleted file mode 100644 index a03ce385c..000000000 Binary files a/content/community/community_header_home.jpg and /dev/null differ diff --git a/content/community/community_pathefinder.jpg b/content/community/community_pathefinder.jpg deleted file mode 100644 index b876b1916..000000000 Binary files a/content/community/community_pathefinder.jpg and /dev/null differ diff --git a/content/community/documentation.png b/content/community/documentation.png deleted file mode 100644 index 4c4009298..000000000 Binary files a/content/community/documentation.png and /dev/null differ diff --git a/content/community/forum.png b/content/community/forum.png deleted file mode 100644 index f45758252..000000000 Binary files a/content/community/forum.png and /dev/null differ diff --git a/content/community/github.png b/content/community/github.png deleted file mode 100644 index 387b701db..000000000 Binary files a/content/community/github.png and /dev/null differ diff --git a/content/community/index.md b/content/community/index.md deleted file mode 100644 index eb68cf2ed..000000000 --- a/content/community/index.md +++ /dev/null @@ -1,344 +0,0 @@ ---- -title: "Community" -template: "page.html" -insert_anchor_links: "left" ---- - - - -{% row(style="center") %} - -
-
-
-
-
-
-
-
-
-
-
-
- -### **Welcome to the Community** - -We’re a 100% open-source and community-driven project. Anyone can contribute to ThreeFold and there are many ways to get involved. - -
- -#### **Thousands** of Community Members | **Many** Participation Opportunities | **Limitless** Potential - -
-
-
-
-
-
-
-
-
-
-
-
-
- -{% end %} - -{% row(style="center mtop between") %} - -### **Get involved today** - -Already today there are many ways to take part! - -{% end %} - -{% row(style="center between") %} - -
-
- -#### Farmer - -Connects capacity to our new Internet, makes it available to all particpants. - - - -
-
- -||| - -
-
- -#### Grid User - -Tests or uses the technology to deploy workloads and/or administer. - - - -
-
- -||| - -
-
- -#### TFT Holder - -Buys and holds TFT to support the project and use grid services. - - - -
-
- -{% end %} - -{% row(style="center between") %} - -
-
- -#### Technology Provider - -Creates open source technology to be used on the TF Grid (e.g. TF Tech). - -
- -*Get in touch if you'd like to become a technology provider.* - -
-
- -||| - -
-
- -#### 3Node Supplier - -Builds and sells 3Nodes to the community. Provides support as needed. - - - -
-
- -||| - -
-
- -#### Advocate - -Supports the project by spreading the word and growing the community. - -
-
- -{% end %} - -{% row(style="center mtop between") %} - -### **Community of the future** - -These roles will activate soon. Read about [the upcoming cooperative](/blog/threefold-cooperative). - -{% end %} - -{% row(style="center between") %} - -
-
- -#### TF Cooperative - -Our governance layer, which we are all a part of. Together we build. - -
-
- -||| - -
-
- -#### Guardians - -A trusted group to protect the network and provide governance. - -
-
- -||| - -
-
- -#### Farming Pools - -Help farmers to be more effective. - -
-
- -{% end %} - -{% row(style="center between") %} - -
-
- -#### Network Bridgers - -Bridge the old and new (Internets), provide bandwidth to Mycelium. - -
-
- -||| - -
-
- -#### Digital Sovereign Zones - -Leverage TF technology for end-to-end sovereign regulated sandbox environments. - -
- -*Our first digital sovereign zone will come alive in Zanzibar in 2024.* - -
-
- -||| - -
-
- -#### DePIN Flow Provider - -A project (company, community) which will launch us into the DePIN world. - -
-
- -{% end %} - - - -{% row(style="center mtop between") %} - -### **Helpful links for the community** - -{% end %} - -{% row(style="center between") %} - -[![](discourse.png)](https://forum.threefold.io/) - -#### Forum - -Ask Questions - -||| - -[![](gh.png)](https://github.com/threefoldtech) - -#### GitHub - -Collaborate - -||| - -[![](manual.png)](https://manual.grid.tf) - -#### Manual - -Dive In - -{% end %} - -{% row(style="center between") %} - -[![](x.png)](https://twitter.com/threefold_io) - -#### X (Twitter) - -"Tweet" with us - -||| - -[![](tg_news.png)](https://t.me/threefoldnews) - -#### Telegram News - -Stay updated - -||| - -[![](tg_chat.png)](https://t.me/threefold) - -#### Telegram Chat - -Community conversations - -{% end %} - -{% row(style="center between") %} - -[![](tg_farm.png)](https://t.me/threefoldfarmers) - -#### Telegram Farmers Chat - -Farming Community - -||| - -[![](tg_chat.png)](https://t.me/threefoldtesting) - -#### Telegram Grid Users Chat - -Grid User Community - -||| - -[![](reddit.png)](https://www.reddit.com/r/threefold/) - -#### Reddit - -Join in - -{% end %} - -{% row(style="center mbottom between") %} - -[![](youtube.png)](https://www.youtube.com/threefoldfoundation) - -#### YouTube - -Watch things unfold - -||| - -[![](mail.png)](https://www.threefold.io/#subscribe) - -#### Mailing List - -Updates in your inbox - -||| - -[![](linkedin.png)](https://linkedin.com/company/threefold-foundation) - -#### LinkedIn - -Let's network - -{% end %} - - diff --git a/content/community/mail_list.png b/content/community/mail_list.png deleted file mode 100644 index b52fe318e..000000000 Binary files a/content/community/mail_list.png and /dev/null differ diff --git a/content/community/manual.png b/content/community/manual.png deleted file mode 100644 index 59bbb1d39..000000000 Binary files a/content/community/manual.png and /dev/null differ diff --git a/content/community/telegram_chat.png b/content/community/telegram_chat.png deleted file mode 100644 index 6d43767ed..000000000 Binary files a/content/community/telegram_chat.png and /dev/null differ diff --git a/content/community/telegram_chattester.png b/content/community/telegram_chattester.png deleted file mode 100644 index a4872842a..000000000 Binary files a/content/community/telegram_chattester.png and /dev/null differ diff --git a/content/community/telegram_farmers.png b/content/community/telegram_farmers.png deleted file mode 100644 index 266865190..000000000 Binary files a/content/community/telegram_farmers.png and /dev/null differ diff --git a/content/community/telegram_new.png b/content/community/telegram_new.png deleted file mode 100644 index eb5f6bfb3..000000000 Binary files a/content/community/telegram_new.png and /dev/null differ diff --git a/content/community/tf_people.jpg b/content/community/tf_people.jpg deleted file mode 100644 index ef4b69000..000000000 Binary files a/content/community/tf_people.jpg and /dev/null differ diff --git a/content/community/twitter.png b/content/community/twitter.png deleted file mode 100644 index b51055147..000000000 Binary files a/content/community/twitter.png and /dev/null differ diff --git a/content/deploy/apps.png b/content/deploy/apps.png deleted file mode 100644 index 090a3b233..000000000 Binary files a/content/deploy/apps.png and /dev/null differ diff --git a/content/deploy/capacity.png b/content/deploy/capacity.png deleted file mode 100644 index 04d918512..000000000 Binary files a/content/deploy/capacity.png and /dev/null differ diff --git a/content/deploy/cicd.png b/content/deploy/cicd.png deleted file mode 100644 index c47b4cfcc..000000000 Binary files a/content/deploy/cicd.png and /dev/null differ diff --git a/content/deploy/compute.jpg b/content/deploy/compute.jpg deleted file mode 100644 index 5d21e25cb..000000000 Binary files a/content/deploy/compute.jpg and /dev/null differ diff --git a/content/deploy/compute_.png b/content/deploy/compute_.png deleted file mode 100644 index b01e0f4ed..000000000 Binary files a/content/deploy/compute_.png and /dev/null differ diff --git a/content/deploy/countries.png b/content/deploy/countries.png deleted file mode 100644 index b162c4dce..000000000 Binary files a/content/deploy/countries.png and /dev/null differ diff --git a/content/deploy/depin.png b/content/deploy/depin.png deleted file mode 100644 index c0eb10a8d..000000000 Binary files a/content/deploy/depin.png and /dev/null differ diff --git a/content/deploy/effecient.png b/content/deploy/effecient.png deleted file mode 100644 index 6d9ead0b0..000000000 Binary files a/content/deploy/effecient.png and /dev/null differ diff --git a/content/deploy/index.md b/content/deploy/index.md deleted file mode 100644 index fa63da70c..000000000 --- a/content/deploy/index.md +++ /dev/null @@ -1,149 +0,0 @@ ---- -title: "Deploy" -template: "page.html" -insert_anchor_links: "left" ---- - - - -{% row(style="center") %} - -
-
-
-
-
-
-
-
-
-
-
-
- -### **Deploy the future** - -Deploy and administer on a decentralized autonomous edge infrastructure.
Experience true ownership of your deployments, along with greater scalability, efficiency, privacy, and security. - -
- -#### **Hundreds** of Grid Users | **Thousands** of Deployments | **Limitless** Potential - -
-
-
-
-
-
-
-
-
-
-
-
-
- -{% end %} - - - -{% row(style="center narrow mtop") %} - -![Image](yourway.png#medium) - -### **Your deployments, your way** - -ThreeFold is designed for compatibility. Developers and system administrators are provided with familiar ways of deploying and managing resources. From decentralized cloud computing to blockchain integration to overseeing infrastructures and optimizing performance, grid users have a breadth of options for smooth and efficient operation. - - - - -
-
-
-
-
- -{% end %} - -{% row(style="center narrow mtop") %} - -### **A world of use cases** - -ThreeFold supports a wide array of use cases, but here is a sampling of who can benefit most from the ThreeFold Grid today: - -{% end %} - -{% row(style="center narrow") %} - -![Image](depin.png#medium) - -#### For DePIN - -
- -Any current or future IT workload can run on the ThreeFold Grid - -
- -Smart Contract enabled provisioning of IT capacity in a few clicks - -
- -First-of-its-kind P2P network (Mycelium) - -||| - -![Image](countries.png#medium) - -#### For Countries - -
- -Deploy their own sovereign Internets - -
- -Keep data and economic benefits inside the country - -
- -Greater security, resilience, and customization - -||| - -![Image](cicd.png#medium) - -#### For CI & CD - -
- -Redundancy and resilience - -
- -Improved performance, security, and scalability - -
- -Greater autonomy and flexibility - -||| - -![Image](apps.png#medium) - -#### For Social Media Apps - -
- -Allow users to own their own data - -
- -Greater interoperability and openness - -
- -Reduced monopolistic power, enables healthy competition - -{% end %} \ No newline at end of file diff --git a/content/deploy/kubernetes.png b/content/deploy/kubernetes.png deleted file mode 100644 index 9b2fed80f..000000000 Binary files a/content/deploy/kubernetes.png and /dev/null differ diff --git a/content/deploy/limitless.png b/content/deploy/limitless.png deleted file mode 100644 index 2c924c523..000000000 Binary files a/content/deploy/limitless.png and /dev/null differ diff --git a/content/deploy/network.jpg b/content/deploy/network.jpg deleted file mode 100644 index 354e5fae4..000000000 Binary files a/content/deploy/network.jpg and /dev/null differ diff --git a/content/deploy/network_.png b/content/deploy/network_.png deleted file mode 100644 index f8726d486..000000000 Binary files a/content/deploy/network_.png and /dev/null differ diff --git a/content/deploy/planetary_network.png b/content/deploy/planetary_network.png deleted file mode 100644 index 2a1b2f6cd..000000000 Binary files a/content/deploy/planetary_network.png and /dev/null differ diff --git a/content/deploy/qss.png b/content/deploy/qss.png deleted file mode 100644 index f01c658d0..000000000 Binary files a/content/deploy/qss.png and /dev/null differ diff --git a/content/deploy/scalable.png b/content/deploy/scalable.png deleted file mode 100644 index 92aa1c88b..000000000 Binary files a/content/deploy/scalable.png and /dev/null differ diff --git a/content/deploy/secure.png b/content/deploy/secure.png deleted file mode 100644 index c15b218e0..000000000 Binary files a/content/deploy/secure.png and /dev/null differ diff --git a/content/deploy/storage.jpg b/content/deploy/storage.jpg deleted file mode 100644 index 7845527ec..000000000 Binary files a/content/deploy/storage.jpg and /dev/null differ diff --git a/content/deploy/storage_.png b/content/deploy/storage_.png deleted file mode 100644 index 9e58f2a03..000000000 Binary files a/content/deploy/storage_.png and /dev/null differ diff --git a/content/deploy/terraform.png b/content/deploy/terraform.png deleted file mode 100644 index b3ffd3ca0..000000000 Binary files a/content/deploy/terraform.png and /dev/null differ diff --git a/content/deploy/virtual_machine.png b/content/deploy/virtual_machine.png deleted file mode 100644 index 86f6d2aa4..000000000 Binary files a/content/deploy/virtual_machine.png and /dev/null differ diff --git a/content/deploy/weblets.png b/content/deploy/weblets.png deleted file mode 100644 index a224809a1..000000000 Binary files a/content/deploy/weblets.png and /dev/null differ diff --git a/content/deploy/yourway.png b/content/deploy/yourway.png deleted file mode 100644 index 09b975ab3..000000000 Binary files a/content/deploy/yourway.png and /dev/null differ diff --git a/content/deploy/zero_os.png b/content/deploy/zero_os.png deleted file mode 100644 index c5e375f6e..000000000 Binary files a/content/deploy/zero_os.png and /dev/null differ diff --git a/content/developer/automation.png b/content/developer/automation.png deleted file mode 100644 index e594b14eb..000000000 Binary files a/content/developer/automation.png and /dev/null differ diff --git a/content/developer/automation/automation.png b/content/developer/automation/automation.png deleted file mode 100644 index e594b14eb..000000000 Binary files a/content/developer/automation/automation.png and /dev/null differ diff --git a/content/developer/automation/index.md b/content/developer/automation/index.md deleted file mode 100644 index 50ed9e0d5..000000000 --- a/content/developer/automation/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: automation -template: "resourcesPage.html" - -extra: - imgPath: automation.png - button : Explore Other Developer Components - link : /developer ---- - -## Autonomous Components - -Accelerate you cloud transformation journey with ThreeFold's autonomous and decentralized infrastructure. With self-healing and self-driving capabilities, the ThreeFold Grid allows developers and enterprises to discover, migrate and manage applications and IT infrastructures across their full cloud lifecycle in a self-service model. It removes the need of manual intervention and performs real-time anomaly detection and rebooting on your behalf. diff --git a/content/developer/blockchain.png b/content/developer/blockchain.png deleted file mode 100644 index a3120f6f0..000000000 Binary files a/content/developer/blockchain.png and /dev/null differ diff --git a/content/developer/blockchain/blockchain.png b/content/developer/blockchain/blockchain.png deleted file mode 100644 index a3120f6f0..000000000 Binary files a/content/developer/blockchain/blockchain.png and /dev/null differ diff --git a/content/developer/blockchain/index.md b/content/developer/blockchain/index.md deleted file mode 100644 index 203d1ac94..000000000 --- a/content/developer/blockchain/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Blockchain -template: "resourcesPage.html" - -extra: - imgPath: blockchain.png - button : Explore Other Developer Components - link : /developer ---- - -## ThreeFold Blockchain - -The ThreeFold blockChain is an application specific blockchain built using the Parity Substrate framework. It is responsible for keeping records regarding farms and nodes, along with enabling smart contract based peer to peer billing for workload deployments on the Grid. diff --git a/content/developer/developer_header.jpg b/content/developer/developer_header.jpg deleted file mode 100644 index e4093a2c1..000000000 Binary files a/content/developer/developer_header.jpg and /dev/null differ diff --git a/content/developer/developer_header_home.jpg b/content/developer/developer_header_home.jpg deleted file mode 100644 index e4093a2c1..000000000 Binary files a/content/developer/developer_header_home.jpg and /dev/null differ diff --git a/content/developer/developer_testing.png b/content/developer/developer_testing.png deleted file mode 100644 index 6f31cea13..000000000 Binary files a/content/developer/developer_testing.png and /dev/null differ diff --git a/content/developer/developet_tft.jpg b/content/developer/developet_tft.jpg deleted file mode 100644 index 7be6eb611..000000000 Binary files a/content/developer/developet_tft.jpg and /dev/null differ diff --git a/content/developer/index.md b/content/developer/index.md deleted file mode 100644 index 4abeedfad..000000000 --- a/content/developer/index.md +++ /dev/null @@ -1,130 +0,0 @@ ---- -title: "Developers" -template: "page.html" ---- - - - -{% row(style="margin semiNarrow reverse") %} - -## ThreeFold
**Developer Resources** - -ThreeFold is here to build an open-source Internet and Cloud infrastructure. It's up to all of us to build on top. These resources will introduce you to foundational grid concepts and the developer stack. - - - - - -||| - -![Image](developer_header.jpg) - -{% end %} - - - -{% row(style="center between" id="table_link") %} - -## Explore the
**Documentation** - -{% end %} - -{% row(style="center between") %} - -### **Introduction:** -[Intro to ThreeFold](https://library.threefold.me/info/threefold#/tfgrid/grid/threefold__grid_intro) - -[The ThreeFold Grid](https://library.threefold.me/info/threefold#/tfgrid/grid/threefold__grid_concepts) - -[ThreeFold Farming](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__farming_intro) - -[ThreeFold Cloud](https://library.threefold.me/info/threefold#/cloud/threefold__cloud_intro) - -[ThreeFold Token](https://library.threefold.me/info/threefold#/tokens/threefold__token_what) - -||| - -### **Fundamentals:** - -[Set up your account](https://.grid.tf/getstarted/TF_Connect/TF_Connect.html) - -[Charge your wallet](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) - - - -[Deploy workloads](https://manual.grid.tf/getstarted/tfgrid3_getstarted.html) - -[Create a Farm](https://manual.grid.tf/TF_Farmer_Guide/TF_Complete_Farmer_Guide/farmer_guide.html) - -||| - -### **The Stack:** - -[Zero-OS](https://library.threefold.me/info/threefold#/technology/threefold__zos) - -[Smart Contract for IT](https://library.threefold.me/info/threefold#/technology/threefold__smartcontract_it) - -[Quantum Safe Storage](https://library.threefold.me/info/threefold#/qss/threefold__qsss_home) - -[Virtual Machines](https://library.threefold.me/info/manual/#/manual__weblets_vm) - -[Kubernetes](https://library.threefold.me/info/manual/#/manual__weblets_k8s) - -[Planetary Network](https://library.threefold.me/info/manual/#/technology/threefold__planetary_network) - -{% end %} - -{% dev_resourses() %} - -## Where Would You Like to Start - -## Now Operational** - -{% end %} - - - -{% row(bgColor="#f2f2f2" style="center margin") %} - -## Our
**Developer Resources** - -
- -ThreeFold is here to build the open-source Internet and Cloud infrastructure. The documentation helps you
build on ThreeFold by introducing you to some foundational concepts as well as our development stacks.
-Inspired by the open-source movement, everything at ThreeFold is open to be audited, extended and improved.
If you have any feedback, please reach out with a GitHub issue or on our telegram. - -
- - - - -{% end %} - - - - -{% row(style="margin") %} - -![Image](developet_tft.jpg) - -||| - -## Join Us In Making
**ThreeFold Better** - -All our docs are the results of community efforts. Create a pull request if you see mistakes, room for improvement, or new opportunities to help the ThreeFold community. - -
- - - -{% end %} - - - diff --git a/content/developer/operating_system.png b/content/developer/operating_system.png deleted file mode 100644 index de054059b..000000000 Binary files a/content/developer/operating_system.png and /dev/null differ diff --git a/content/developer/os/index.md b/content/developer/os/index.md deleted file mode 100644 index e9d8a0f98..000000000 --- a/content/developer/os/index.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -title: operating system -template: "resourcesPage.html" - -extra: - imgPath: operating_system.png - button : Explore Other Developer Components - link : /developer ---- - -## **Operating System** - -A groundbreaking autonomous operating system built from scratch, starting with just the Linux kernel. It offers unparalleled security and efficiency. With no remote shell or login and extremely small footprint, Zero-OS ensures that hosted workloads are protected from administrative exploits and errors. - -
- -Users pay for the capacity they utilize directly with TFT meaning the system is widely accessible and without intermediaries. Zero-OS offers a complete set of primitives capable of hosting any digital workload through virtual machines or containers, as well as a highly compatible yet cutting edge storage solution with minimal migration. \ No newline at end of file diff --git a/content/developer/os/operating_system.png b/content/developer/os/operating_system.png deleted file mode 100644 index de054059b..000000000 Binary files a/content/developer/os/operating_system.png and /dev/null differ diff --git a/content/developer/planetary_network.jpg b/content/developer/planetary_network.jpg deleted file mode 100644 index 57e49da8e..000000000 Binary files a/content/developer/planetary_network.jpg and /dev/null differ diff --git a/content/developer/planetarynw/index.md b/content/developer/planetarynw/index.md deleted file mode 100644 index f8e88942d..000000000 --- a/content/developer/planetarynw/index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: planetary network -template: "resourcesPage.html" - -extra: - imgPath: planetary_network.jpg - button : Explore Other Developer Components - link : /developer ---- -
- -## Planetary Network - -Secure Planetary Network is an end-to-end encrypted global overlay network that implements the Yggdrasil initiative. It provides publicly accessible addresses to every connected device through a highly resilient and flexible routing scheme. ThreeFold protocols like the Reliable Message Bus extend these capabilities to serve the unique needs of the ThreeFold Grid. diff --git a/content/developer/planetarynw/planetary_network.jpg b/content/developer/planetarynw/planetary_network.jpg deleted file mode 100644 index 57e49da8e..000000000 Binary files a/content/developer/planetarynw/planetary_network.jpg and /dev/null differ diff --git a/content/developer/qsfs.png b/content/developer/qsfs.png deleted file mode 100644 index 3db58f0f8..000000000 Binary files a/content/developer/qsfs.png and /dev/null differ diff --git a/content/developer/qsfs/index.md b/content/developer/qsfs/index.md deleted file mode 100644 index 87ee5e2ef..000000000 --- a/content/developer/qsfs/index.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: qsfs -template: "resourcesPage.html" - -extra: - imgPath: qsfs.png - button : Explore Other Developer Components - link : /developer ---- - -## Quantum-Safe Storage - -An optimized filesystem frontend for Zdb, with built-in archival features. Zero-DB is a super fast and efficient always append database supporting a subset of the popular Redis protocol. It has superior write performance on hard disk and can also extend the life of solid state disks, while executing up to 50, 000 transactions per second. Zero-DB is suitable out of the box for many database applications and is a building block for advanced storage solutions. - -
-
- -Works together with ZStor to create a highly compatible and extremely secure storage solution, called Quantum Safe Filesystem. ZStor is a distributed and ultra secure storage backend. It compresses, encrypts, and disperses data across a set of Zdbs, to achieve strong resistance to even quantum computing attacks. Flexible configurations enable tuning according to preferences for efficiency, resiliency, and data location. Scales limitlessly and heals seamlessly. diff --git a/content/developer/qsfs/qsfs.png b/content/developer/qsfs/qsfs.png deleted file mode 100644 index 3db58f0f8..000000000 Binary files a/content/developer/qsfs/qsfs.png and /dev/null differ diff --git a/content/developer/tooling.png b/content/developer/tooling.png deleted file mode 100644 index 31d60d5e3..000000000 Binary files a/content/developer/tooling.png and /dev/null differ diff --git a/content/developer/tooling/index.md b/content/developer/tooling/index.md deleted file mode 100644 index 5b85e686d..000000000 --- a/content/developer/tooling/index.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: tooling -template: "resourcesPage.html" - -extra: - imgPath: tooling.png - button : Explore Other Developer Components - link : /developer ---- - -## Developer tooling - -ThreeFold's Internet and cloud infrastructure was designed to power the transition from the web2 to the web3 era seamlessly. After integrating TerraForm's infrastructure as code, Kubernetes and Docker to the decentralized cloud computing environment and building the most compatible Internet storage system in the world, the ThreeFold Grid provides the ideal environemnt for developers and enterprises to migrate seamlessly and scale limitessly. diff --git a/content/developer/tooling/tooling.png b/content/developer/tooling/tooling.png deleted file mode 100644 index 31d60d5e3..000000000 Binary files a/content/developer/tooling/tooling.png and /dev/null differ diff --git a/content/faq/q7/index.md b/content/faq/q7/index.md index b0a655cf3..95a60f690 100644 --- a/content/faq/q7/index.md +++ b/content/faq/q7/index.md @@ -5,7 +5,7 @@ title: How can I get involved with ThreeFold if I'm not very technical? There are many ways for anyone to participate in the ThreeFold movement: - Become a [Farmer](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__farming_intro) and connect sovereign and planet positive Internet capacity from your home or office. -- Buy [ThreeFold Tokens](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) to grow the new Internet economy and use it to reserve private and secure Internet capacity on the ThreeFold Grid. +- Buy [ThreeFold Tokens](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html) to grow the new Internet economy and use it to reserve private and secure Internet capacity on the ThreeFold Grid. - Join a collaborative ecosystem of partners that choose to take action, and together build the most efficient and secure technological infrastructures, equalitarian and sovereign applications and regenerate our planet. Join us - [the ThreeFold ecosystem](https://t.me/threefold) or [the Alliance for a Conscious Internet](https://www.consciousinternet.org/). - Become a ThreeFold Advocate by sharing about us within your networks. Wether one or thousands of people, with the butterfly effect, everyone counts! - Join our [community](https://t.me/threefold), [forum](https://forum.threefold.io/) and [github](https://github.com/threefoldfoundation) to support us in our growth by participating in our conversations and development. diff --git a/content/farm/Earn_3.png b/content/farm/Earn_3.png deleted file mode 100644 index a2abdda7c..000000000 Binary files a/content/farm/Earn_3.png and /dev/null differ diff --git a/content/farm/build.png b/content/farm/build.png deleted file mode 100644 index 097066ded..000000000 Binary files a/content/farm/build.png and /dev/null differ diff --git a/content/farm/buy.png b/content/farm/buy.png deleted file mode 100644 index 1b6213855..000000000 Binary files a/content/farm/buy.png and /dev/null differ diff --git a/content/farm/farm_center.png b/content/farm/farm_center.png deleted file mode 100644 index bcf4545dc..000000000 Binary files a/content/farm/farm_center.png and /dev/null differ diff --git a/content/farm/farm_do_it.png b/content/farm/farm_do_it.png deleted file mode 100644 index c7fe4370b..000000000 Binary files a/content/farm/farm_do_it.png and /dev/null differ diff --git a/content/farm/farm_do_it_home.png b/content/farm/farm_do_it_home.png deleted file mode 100644 index c7fe4370b..000000000 Binary files a/content/farm/farm_do_it_home.png and /dev/null differ diff --git a/content/farm/farm_header.jpg b/content/farm/farm_header.jpg deleted file mode 100644 index 349ac8040..000000000 Binary files a/content/farm/farm_header.jpg and /dev/null differ diff --git a/content/farm/farm_tft.png b/content/farm/farm_tft.png deleted file mode 100644 index 1de761dc9..000000000 Binary files a/content/farm/farm_tft.png and /dev/null differ diff --git a/content/farm/farm_titan.jpg b/content/farm/farm_titan.jpg deleted file mode 100644 index 495bed493..000000000 Binary files a/content/farm/farm_titan.jpg and /dev/null differ diff --git a/content/farm/farm_value_tft.jpg b/content/farm/farm_value_tft.jpg deleted file mode 100644 index 2e86b76f1..000000000 Binary files a/content/farm/farm_value_tft.jpg and /dev/null differ diff --git a/content/farm/farming1.png b/content/farm/farming1.png deleted file mode 100644 index c63d3c11e..000000000 Binary files a/content/farm/farming1.png and /dev/null differ diff --git a/content/farm/farming2.png b/content/farm/farming2.png deleted file mode 100644 index b56a1619e..000000000 Binary files a/content/farm/farming2.png and /dev/null differ diff --git a/content/farm/farming3.png b/content/farm/farming3.png deleted file mode 100644 index 61e200247..000000000 Binary files a/content/farm/farming3.png and /dev/null differ diff --git a/content/farm/index.md b/content/farm/index.md deleted file mode 100644 index 501114ea6..000000000 --- a/content/farm/index.md +++ /dev/null @@ -1,109 +0,0 @@ ---- -title: "Farm" -template: "page.html" -insert_anchor_links: "left" ---- - - - -{% row(style="center narrow") %} - -
-
-
-
-
-
-
-
-
-
-
-
- -### **Be the Cloud** - -By connecting a modern computer at your home or office to the ThreeFold Grid, you can provide cloud capacity to communities and builders, and be rewarded for doing this. - -
- -#### **Thousands** of Hosters | **60+** Countries | **30+** PB of Capacity - -
-
-
-
-
-
-
-
-
-
-
-
-
- -{% end %} - -{% row(style="center narrow mtop") %} - -![Image](build.png#medium) - -### **Build a Node** - -Optimize your own specs to ensure a reliable and performant node, while receiving fair reward for your contribution of Internet resources. - -
- - - -
-
-
-
-
- -||| - -![Image](buy.png#medium) - -### **Buy a Node** - -Buy a preconfigured node from an independent vendor. Nodes are optimized for performance and rewards across different price points. - -
- - - -
-
-
-
-
- -{% end %} - -{% row(style="center narrow mtop") %} - -
-
-
-
-
- -### **Earn your reward** - -ThreeFold has a digital currency called TFT, which you earn every month according to the amount of Internet resources you provide and maintaining specific levels of uptime performance. TFT is also the medium of exchange in the ecosystem, necessary for utilizing resources. - -
- - - - -
-
-
-
-
- -{% end %} \ No newline at end of file diff --git a/content/footer/_index.md b/content/footer/_index.md index e3592d206..4e1dc79d4 100644 --- a/content/footer/_index.md +++ b/content/footer/_index.md @@ -16,9 +16,9 @@ extra: ###### [Learn](https://manual.grid.tf/) -###### [Farm](https://manual.grid.tf/farmers/farmers.html) +###### [Host (Farm)](/host) -###### [Deploy on the Playground](https://playground.grid.tf/) +###### [Dashboard](https://next.dashboard.grid.tf/) ###### [Download TF Connect: iOS](https://apps.apple.com/us/app/3bot-login/id1459845885) @@ -32,7 +32,7 @@ extra: ###### [Main Chat](https://t.me/threefold) -###### [Farming Chat](https://t.me/threefoldfarmers) +###### [Hosting / Farming Chat](https://t.me/threefoldfarmers) ###### [Grid User Chat](https://t.me/threefoldtesting) @@ -48,11 +48,11 @@ extra:
About
-
News
+
NewsRoom
-
Community
+
People
-
Partners
+
Partners
Blog
diff --git a/content/header/index.md b/content/header/index.md index ff72ae151..101a85c16 100644 --- a/content/header/index.md +++ b/content/header/index.md @@ -8,65 +8,9 @@ extra: --- - [About]("/about") -- [How It Works]("/how") -- [Farm]("/farm") -- [Deploy]("/deploy") +- [Host]("/host") +- [Utilization]("/utilization") - [News]("/newsroom") - [Blog]("/blog") -- [Community]("/community") - [People]("/people") -- Help - -{% row(style="wide") %} - -#### Tools - - - - - - - - - -{% end %} +- [Documentation]("https://manual.grid.tf") diff --git a/content/home/6-1.png b/content/home/6-1.png new file mode 100644 index 000000000..0a3f2db42 Binary files /dev/null and b/content/home/6-1.png differ diff --git a/content/home/BG_wide.png b/content/home/BG_wide.png new file mode 100644 index 000000000..9fa758c08 Binary files /dev/null and b/content/home/BG_wide.png differ diff --git a/content/home/Bg.jpg b/content/home/Bg.jpg new file mode 100644 index 000000000..5ca6d0597 Binary files /dev/null and b/content/home/Bg.jpg differ diff --git a/content/home/Bg.png b/content/home/Bg.png new file mode 100644 index 000000000..102ffb10e Binary files /dev/null and b/content/home/Bg.png differ diff --git a/content/home/V3.png b/content/home/V3.png new file mode 100644 index 000000000..29bcb32c1 Binary files /dev/null and b/content/home/V3.png differ diff --git a/content/home/become_farmer_new.jpg b/content/home/become_farmer_new.jpg deleted file mode 100644 index 40a4aec61..000000000 Binary files a/content/home/become_farmer_new.jpg and /dev/null differ diff --git a/content/home/beyond.png b/content/home/beyond.png new file mode 100644 index 000000000..b98d2d9dc Binary files /dev/null and b/content/home/beyond.png differ diff --git a/content/home/bg_new.jpg b/content/home/bg_new.jpg new file mode 100644 index 000000000..28caafe10 Binary files /dev/null and b/content/home/bg_new.jpg differ diff --git a/content/home/build_home.png b/content/home/build_home.png deleted file mode 100644 index ba3815e9e..000000000 Binary files a/content/home/build_home.png and /dev/null differ diff --git a/content/home/build_icon1.png b/content/home/build_icon1.png new file mode 100644 index 000000000..a1a5191d2 Binary files /dev/null and b/content/home/build_icon1.png differ diff --git a/content/home/buildicon.png b/content/home/buildicon.png new file mode 100644 index 000000000..41d4d448e Binary files /dev/null and b/content/home/buildicon.png differ diff --git a/content/home/capacity.png b/content/home/capacity.png deleted file mode 100644 index 04d918512..000000000 Binary files a/content/home/capacity.png and /dev/null differ diff --git a/content/home/checker1.png b/content/home/checker1.png new file mode 100644 index 000000000..245e7fce9 Binary files /dev/null and b/content/home/checker1.png differ diff --git a/content/home/checker2.png b/content/home/checker2.png new file mode 100644 index 000000000..245e7fce9 Binary files /dev/null and b/content/home/checker2.png differ diff --git a/content/home/checker3.png b/content/home/checker3.png new file mode 100644 index 000000000..26cdabb31 Binary files /dev/null and b/content/home/checker3.png differ diff --git a/content/home/checker4.png b/content/home/checker4.png new file mode 100644 index 000000000..4ec1b9e3f Binary files /dev/null and b/content/home/checker4.png differ diff --git a/content/home/checkerboard.png b/content/home/checkerboard.png new file mode 100644 index 000000000..dd16e12ec Binary files /dev/null and b/content/home/checkerboard.png differ diff --git a/content/home/checkerboard1.jpg b/content/home/checkerboard1.jpg new file mode 100644 index 000000000..264abf5b7 Binary files /dev/null and b/content/home/checkerboard1.jpg differ diff --git a/content/home/checkerboard2.jpg b/content/home/checkerboard2.jpg new file mode 100644 index 000000000..9cff677a2 Binary files /dev/null and b/content/home/checkerboard2.jpg differ diff --git a/content/home/community_header_home.jpg b/content/home/community_header_home.jpg deleted file mode 100644 index a03ce385c..000000000 Binary files a/content/home/community_header_home.jpg and /dev/null differ diff --git a/content/home/community_home.png b/content/home/community_home.png deleted file mode 100644 index 5115b2de9..000000000 Binary files a/content/home/community_home.png and /dev/null differ diff --git a/content/home/compatible.png b/content/home/compatible.png new file mode 100644 index 000000000..159a049d4 Binary files /dev/null and b/content/home/compatible.png differ diff --git a/content/home/compatible1.png b/content/home/compatible1.png new file mode 100644 index 000000000..cee7a2e7e Binary files /dev/null and b/content/home/compatible1.png differ diff --git a/content/home/complementing.png b/content/home/complementing.png new file mode 100644 index 000000000..22e2cd2db Binary files /dev/null and b/content/home/complementing.png differ diff --git a/content/home/cost.png b/content/home/cost.png new file mode 100644 index 000000000..5915b1dba Binary files /dev/null and b/content/home/cost.png differ diff --git a/content/home/cost_efficiency.png b/content/home/cost_efficiency.png new file mode 100644 index 000000000..43c84e377 Binary files /dev/null and b/content/home/cost_efficiency.png differ diff --git a/content/home/data_sovereignity.png b/content/home/data_sovereignity.png new file mode 100644 index 000000000..749d712ca Binary files /dev/null and b/content/home/data_sovereignity.png differ diff --git a/content/home/dataprivacy.png b/content/home/dataprivacy.png new file mode 100644 index 000000000..6795ab51b Binary files /dev/null and b/content/home/dataprivacy.png differ diff --git a/content/community/discourse.png b/content/home/discourse.png similarity index 100% rename from content/community/discourse.png rename to content/home/discourse.png diff --git a/content/home/effecient.png b/content/home/effecient.png deleted file mode 100644 index 6d9ead0b0..000000000 Binary files a/content/home/effecient.png and /dev/null differ diff --git a/content/home/expand_icon1.png b/content/home/expand_icon1.png new file mode 100644 index 000000000..a4fc978ad Binary files /dev/null and b/content/home/expand_icon1.png differ diff --git a/content/home/expandicon.png b/content/home/expandicon.png new file mode 100644 index 000000000..005161432 Binary files /dev/null and b/content/home/expandicon.png differ diff --git a/content/home/farm_home.png b/content/home/farm_home.png deleted file mode 100644 index cb00cdf03..000000000 Binary files a/content/home/farm_home.png and /dev/null differ diff --git a/content/home/farming_home.png b/content/home/farming_home.png deleted file mode 100644 index 5983aef8d..000000000 Binary files a/content/home/farming_home.png and /dev/null differ diff --git a/content/community/gh.png b/content/home/gh.png similarity index 100% rename from content/community/gh.png rename to content/home/gh.png diff --git a/content/home/header_bg.jpg b/content/home/header_bg.jpg new file mode 100644 index 000000000..f8c2c62ed Binary files /dev/null and b/content/home/header_bg.jpg differ diff --git a/content/home/header_geometric_new.png b/content/home/header_geometric_new.png new file mode 100644 index 000000000..5f332393c Binary files /dev/null and b/content/home/header_geometric_new.png differ diff --git a/content/home/header_home2.png b/content/home/header_home2.png new file mode 100644 index 000000000..3fe540d9c Binary files /dev/null and b/content/home/header_home2.png differ diff --git a/content/home/header_new.jpeg b/content/home/header_new.jpeg new file mode 100644 index 000000000..d0da15e0d Binary files /dev/null and b/content/home/header_new.jpeg differ diff --git a/content/home/header_new.png b/content/home/header_new.png new file mode 100644 index 000000000..ae25fb650 Binary files /dev/null and b/content/home/header_new.png differ diff --git a/content/home/header_new_b.png b/content/home/header_new_b.png new file mode 100644 index 000000000..dd4c5a77b Binary files /dev/null and b/content/home/header_new_b.png differ diff --git a/content/home/header_texture.jpg b/content/home/header_texture.jpg new file mode 100644 index 000000000..9421c228a Binary files /dev/null and b/content/home/header_texture.jpg differ diff --git a/content/home/holochain.png b/content/home/holochain.png new file mode 100644 index 000000000..32f38b130 Binary files /dev/null and b/content/home/holochain.png differ diff --git a/content/home/home_alternativeblock.png b/content/home/home_alternativeblock.png new file mode 100644 index 000000000..c5f90c189 Binary files /dev/null and b/content/home/home_alternativeblock.png differ diff --git a/content/home/home_geometric_header.png b/content/home/home_geometric_header.png new file mode 100644 index 000000000..109ca3f29 Binary files /dev/null and b/content/home/home_geometric_header.png differ diff --git a/content/home/home_header.png b/content/home/home_header.png new file mode 100644 index 000000000..434d77f34 Binary files /dev/null and b/content/home/home_header.png differ diff --git a/content/home/home_header_geometric.png b/content/home/home_header_geometric.png new file mode 100644 index 000000000..68265cac9 Binary files /dev/null and b/content/home/home_header_geometric.png differ diff --git a/content/home/home_header_update.png b/content/home/home_header_update.png new file mode 100644 index 000000000..163d9acb6 Binary files /dev/null and b/content/home/home_header_update.png differ diff --git a/content/home/home_new.png b/content/home/home_new.png new file mode 100644 index 000000000..5dcf75831 Binary files /dev/null and b/content/home/home_new.png differ diff --git a/content/home/ict.png b/content/home/ict.png new file mode 100644 index 000000000..fde19dba2 Binary files /dev/null and b/content/home/ict.png differ diff --git a/content/home/index.md b/content/home/index.md index cb90879aa..aa79b8b63 100644 --- a/content/home/index.md +++ b/content/home/index.md @@ -1,239 +1,236 @@ --- title: "Home" -description: "A global movement together building an open-source, community-driven, decentralized Internet – from the ground up." # quotation marks to allow colons where used +description: "ThreeFold is the world’s first system enabling anyone to become a cloud and internet service provider." # quotation marks to allow colons where used date: 2018-09-14T21:00:00-05:00 updated: 2021-02-20T14:40:00-06:00 draft: false extra: author: Your name here - imgPath: images/threefold_globe.png + imgPath: home/header_new.jpeg --- + -{% row(style="center narrow") %} +
+ +{% row(style="reverse header") %} + +## **Decentralized
Autonomous Cloud** + +ThreeFold’s self-healing autonomous system empowers anyone to become a cloud service provider – no technical expertise required – allowing people and organizations to buy, sell and use cloud resources autonomously and securely. -
-
-
-
-
-
-
-
-
-

-![Image](black_threefold_horizontal.png#medium) +**Together we are creating a cloud for everyone, owned by everyone.** -### **Decentralized Autonomous Cloud** +||| -ThreeFold is the world's first system enabling anyone to become a cloud provider,
empowering people and organizations to buy and sell cloud resources autonomously and securely. - -
-
-
-
-
-
-
-
-
-
-
+![Image](header_new.jpeg) {% end %} + + + + + {% grid_stats() %} -### The ThreeFold Grid +### Become a cloud & Internet service provider on -### **Connected globally and commercially ready** +## **The ThreeFold Grid** -#### **Mainnet: 3.12** | Testnet: 3.12 | Devnet 3.13 +Provide cloud and Internet capacity in your area and become a part of the largest
and most advanced decentralized autonomous cloud network in the world. {% end %} -{% row(style="center mtop") %} -### **Key Features: Under the hood** -Take a look at some of the key innovations and features which make ThreeFold come alive. -{% end %} + -{% row(style="center narrow") %} -![Image](zos.png#medium) +{% row(style="reverse margin") %} -#### Zero OS +## **It Starts with 3Nodes** -
+**3Nodes**, powered by our stateless operating system, Zero-OS, allow anyone to earn by providing compute, storage, and network capacity to the ThreeFold Cloud. Pre-configured plug and earn 3Nodes for beginners, or do it yourself 3Nodes for builders -A minimalistic, more efficient server operating system retaining the Linux kernel but fundamentally redesigned for heightened security, efficiency, and support for true peer-to-peer and decentralized workloads. + ||| -![Image](smartcontract.png#medium) +![Image](node_home.png#mx-auto) -#### Smart Contract for IT +{% end %} -
-Secure, verified, multi-signed authentication enabling the autonomous reservation of capacity, storing files, deployment of applications, and more, in just a few clicks. + + + + +{% row( style="center between mtop") %} + +## **Our Partners** + +### Driving utilization on top of our decentralized autonomous cloud + +{% end %} + +{% row( style="center between") %} + +
+ +[![](social_network.png#mx-auto)](https://www.social.network/en) + +
||| -![Image](mycelium.png#medium) +
-#### Mycelium +[![](ourworld.png#mx-auto)](https://freezone.ourworld.tf/) -
- -A new overlay network layer designed to enhance the existing Internet infrastructure while remaining compatible with all current applications, empowering true peer-to-peer communication. - -{% end %} - -{% row(style="center narrow") %} - -![Image](unified.png#medium) - -#### IaC, Kubernetes, & VMs - -
- -A unified computing platform that integrates Infrastructure as Code (IaC), Kubernetes, and Virtual Machines for automated, scalable, and efficient application deployment and management. +
||| -![Image](dedicatedip.png#medium) +
-#### Dedicated IP Leasing +[![](ict.png#mx-auto)](https://www.ictc.go.tz/) -
+
-Unlock stability and control with dedicated IP leasing. Ensure consistent access, enhance security, and boost your online reputation with a unique IP address tailored exclusively to your needs. +{% end %} + + +{% row( style="mbottom center between") %} + +
+ +[![](sikana.png#mx-auto)](https://www.sikana.tv/en) + +
||| -![Image](qsfs.png#medium) +
-#### Quantum Safe File System +[![](vevrse.png#mx-auto)](https://veverse.com/) -
- -A FUSE-based filesystem utilizing Zero-Stor as its backend. Metadata is safeguarded to prevent loss, inheriting Zero-Stor's benefits and simplifying usage for developers and system administrators. - -{% end %} - -{% row(style="center narrow mtop") %} - -
-
-
-
-
- -### **Build your sovereign environment** - -Define your infrastructure requirements, reserve your capacity, and seamlessly scale your workloads and databases anywhere the network exists. Leverage the inherent benefits of autonomous IT such as better pricing, network security and safety, lower carbon footprint, and more. - -
-
-
-
-
- -{% end %} - -{% row(style="center mtop") %} - -![Image](vms.png#medium) - -### **Environments** - -{% end %} - -{% row(style="center narrow") %} - -#### Virtual Machines - -
- -We provide full virtual machines for comprehensive computing needs, offering complete control and flexibility. Additionally, our micro virtual machines cater to lightweight tasks, optimizing resource usage and scalability for efficient operations. +
||| -#### Kubernetes +
+ +[![](vverse.png#mx-auto)](https://www.vverse.co/) + +
+ +{% end %} + + + + + + + +{% row( style="mtop center between ") %} + +## **Why Decentralized Cloud** + +### How bringing data closer to the end user is beneficial for everyone + +{% end %} + +{% row( style="center semiNarrow") %} + +![Image](latency_reduction.png#tft_img#mx-auto)
-Kubernetes is the standard container orchestration tool. On the ThreeFold Grid, Kubernetes clusters can be deployed out of the box. We have implemented K3S, a full-blown Kubernetes offering that uses only half of the memory footprint. +### **Latency Reduction** + +For real-time apps, central cloud delay is prohibitive. Edge Cloud cuts latency locally. ||| -#### NixOS MicroVMs +![Image](privacy_security.png#tft_img#mx-auto)
-A minimalistic virtual machine environment based on the NixOS Linux distribution. The NixOS MicroVM leverages these principles to create a highly customizable and reproducible virtual machine environment. +### **Privacy & Security** -{% end %} - -{% row(style="center mtop") %} - -### **Ready Community Solutions** - -Already optimized for deployment in just a few clicks. - - - -![Image](playground.png#large) - -{% end %} - -{% row(style="center mtop") %} - -### **Around the ecosystem** - -{% end %} - -{% row(style="center narrow") %} - -[![Image](newdashboardux.png)](/newsroom/newdashboardux) - -
- -##### Technology - -#### New Dashboard UI/UX - -
- -Dive into the latest features and functionalities of our newly-upgraded dashboard – the go-to platform for managing and deploying on the TF Grid. - -
- - +By processing data locally, edge cloud reduces the exposure to data breaches and cyberattacks. ||| +![Image](data_sovereignity.png#tft_img#mx-auto) + +
+ +### **Data Sovereignity** + +Empowers emerging markets with local data storage, granting digital sovereignty and autonomy. + +{% end %} + +{% row( style="center semiNarrow") %} + +![Image](performance.png#tft_img#mx-auto) + +
+ +### **Performance** + +Provides optimized bandwidth, reliability, and real-time processing which streamlines operations. + +||| + +![Image](cost_efficiency.png#tft_img#mx-auto) + +
+ +### **Cost Efficiency** + +Minimizes data transmission over networks, cutting costs and reducing central server demand. + +||| + +![Image](scalability.png#tft_img#mx-auto) + +
+ +### **Scalability** + +As devices multiply, central data centers face data overload. Edge cloud distributes processing and boosts scalability. + +{% end %} + + + + + + +{% row( style="center between mtop") %} + +## **Around the Ecosystem** + +### News & Happenings + +{% end %} + +{% row( style="center between") %} + [![Image](dunia_yetu.png)](/blog/dunia-yetu)
-##### Partnership +#### **A Sovereign Internet in Tanzania** -#### Internet for Tanzania - -
- -We are collaborating with the government and local tech community to enable Dunia Yetu (Our World in Swahili), a sovereign digital future for Tanzania. - -
- - +Dunia Yetu (Our World) is a collaborative and co-owned movement to redefine the digital landscape in Tanzania. ||| @@ -241,68 +238,137 @@ We are collaborating with the government and local tech community to enable Duni
-##### Governance +#### **Cooperative Model is Coming** -#### A Cooperative Model - -
- -In H1 2022, ThreeFold is moving to a cooperative model, a well-proven mechanism for decentralized governance. See what it will mean for the ecosystem. - -
- - +Cooperatives represent a well-tested form of collective organization and democratic governance. {% end %} -{% row(style="center narrow mtop") %} -### **A participatory movement** + + + + +{% row(style="center mtop between") %} + +## **Join In** {% end %} -{% row(style="center narrow") %} +{% row(style="center between") %} -
-
+[![](discourse.png#social)](https://forum.threefold.io/) -![Image](community.png#medium) +#### Forum -
- -#### Learn how to get involved - -
- -Get to know the different ecosystem roles and some of the people driving the movement forward. - -
- - - -
-
+Ask Questions ||| -
-
+[![](gh.png#social)](https://github.com/threefoldtech) -![Image](manual.png#medium) +#### GitHub -
+Collaborate -#### Get started with the manual +||| -
+[![](manual.png#social)](https://manual.grid.tf) -Learn how to take action – from connecting capacity to deploying on top of it to buying the token. +#### Manual -
+Dive In - +||| -
-
+[![](x.png#social)](https://twitter.com/threefold_io) -{% end %} \ No newline at end of file +#### X (Twitter) + +"Tweet" with us + +{% end %} + + + +{% row(style="center between") %} + + +[![](tg_news.png#social)](https://t.me/threefoldnews) + +#### Telegram News + +Stay updated + +||| + +[![](tg_chat.png#social)](https://t.me/threefold) + +#### Telegram Main Chat + +Community conversations + + +||| + +[![](tg_farm.png#social)](https://t.me/threefoldfarmers) + +#### Telegram Farmers Chat + +Farming Community + + +||| + +[![](tg_chat.png#social)](https://t.me/threefoldtesting) + +#### Telegram Grid Users Chat + +Grid User Community + +{% end %} + + +{% row(style="center between") %} + + +[![](reddit.png#social)](https://www.reddit.com/r/threefold/) + +#### Reddit + +Join in + +||| + +[![](youtube.png#social)](https://www.youtube.com/threefoldfoundation) + +#### YouTube + +Watch things unfold + +||| + + + +[![](mail.png#social)](https://landing.mailerlite.com/webforms/landing/n7q9l7) + + + + + + +#### Mailing List + +Updates in your inbox + +||| + +[![](linkedin.png#social)](https://linkedin.com/company/threefold-foundation) + +#### LinkedIn + +Let's network + +{% end %} + +
diff --git a/content/home/internet_outdated.png b/content/home/internet_outdated.png new file mode 100644 index 000000000..47ac0400e Binary files /dev/null and b/content/home/internet_outdated.png differ diff --git a/content/home/internet_outdated1.png b/content/home/internet_outdated1.png new file mode 100644 index 000000000..16ceb6ec1 Binary files /dev/null and b/content/home/internet_outdated1.png differ diff --git a/content/home/internetoutdated1.png b/content/home/internetoutdated1.png new file mode 100644 index 000000000..d80cca491 Binary files /dev/null and b/content/home/internetoutdated1.png differ diff --git a/content/home/kristof_quote.png b/content/home/kristof_quote.png new file mode 100644 index 000000000..8b4f78559 Binary files /dev/null and b/content/home/kristof_quote.png differ diff --git a/content/home/latency.png b/content/home/latency.png new file mode 100644 index 000000000..b1bd7f319 Binary files /dev/null and b/content/home/latency.png differ diff --git a/content/home/latency_reduction.png b/content/home/latency_reduction.png new file mode 100644 index 000000000..041c9f99a Binary files /dev/null and b/content/home/latency_reduction.png differ diff --git a/content/community/linkedin.png b/content/home/linkedin.png similarity index 100% rename from content/community/linkedin.png rename to content/home/linkedin.png diff --git a/content/community/mail.png b/content/home/mail.png similarity index 100% rename from content/community/mail.png rename to content/home/mail.png diff --git a/content/home/manual.png b/content/home/manual.png index a7e3228fd..59bbb1d39 100644 Binary files a/content/home/manual.png and b/content/home/manual.png differ diff --git a/content/home/network_new.jpg b/content/home/network_new.jpg deleted file mode 100644 index 119e0c923..000000000 Binary files a/content/home/network_new.jpg and /dev/null differ diff --git a/content/home/node_home.png b/content/home/node_home.png new file mode 100644 index 000000000..129454c7d Binary files /dev/null and b/content/home/node_home.png differ diff --git a/content/home/ourworld.png b/content/home/ourworld.png new file mode 100644 index 000000000..ef1aa66a3 Binary files /dev/null and b/content/home/ourworld.png differ diff --git a/content/home/outdated_home.png b/content/home/outdated_home.png new file mode 100644 index 000000000..b908bf4f5 Binary files /dev/null and b/content/home/outdated_home.png differ diff --git a/content/home/partners_home.png b/content/home/partners_home.png new file mode 100644 index 000000000..1a2d2cc40 Binary files /dev/null and b/content/home/partners_home.png differ diff --git a/content/home/performance.png b/content/home/performance.png new file mode 100644 index 000000000..465a7ff6b Binary files /dev/null and b/content/home/performance.png differ diff --git a/content/home/privacy_security.png b/content/home/privacy_security.png new file mode 100644 index 000000000..447b3ee2b Binary files /dev/null and b/content/home/privacy_security.png differ diff --git a/content/community/reddit.png b/content/home/reddit.png similarity index 100% rename from content/community/reddit.png rename to content/home/reddit.png diff --git a/content/home/scalability.png b/content/home/scalability.png new file mode 100644 index 000000000..96c03a4ef Binary files /dev/null and b/content/home/scalability.png differ diff --git a/content/home/scalable.png b/content/home/scalable.png deleted file mode 100644 index 92aa1c88b..000000000 Binary files a/content/home/scalable.png and /dev/null differ diff --git a/content/home/secure.png b/content/home/secure.png deleted file mode 100644 index c15b218e0..000000000 Binary files a/content/home/secure.png and /dev/null differ diff --git a/content/home/sikana.png b/content/home/sikana.png new file mode 100644 index 000000000..216e66b95 Binary files /dev/null and b/content/home/sikana.png differ diff --git a/content/home/social_network.png b/content/home/social_network.png new file mode 100644 index 000000000..a7d85a61e Binary files /dev/null and b/content/home/social_network.png differ diff --git a/content/home/sovereignty.png b/content/home/sovereignty.png new file mode 100644 index 000000000..f31680d46 Binary files /dev/null and b/content/home/sovereignty.png differ diff --git a/content/home/test.png b/content/home/test.png deleted file mode 100644 index 3d9f190d5..000000000 Binary files a/content/home/test.png and /dev/null differ diff --git a/content/community/tg_chat.png b/content/home/tg_chat.png similarity index 100% rename from content/community/tg_chat.png rename to content/home/tg_chat.png diff --git a/content/community/tg_farm.png b/content/home/tg_farm.png similarity index 100% rename from content/community/tg_farm.png rename to content/home/tg_farm.png diff --git a/content/community/tg_grid.png b/content/home/tg_grid.png similarity index 100% rename from content/community/tg_grid.png rename to content/home/tg_grid.png diff --git a/content/community/tg_news.png b/content/home/tg_news.png similarity index 100% rename from content/community/tg_news.png rename to content/home/tg_news.png diff --git a/content/home/together_icon1.png b/content/home/together_icon1.png new file mode 100644 index 000000000..a8e2b97ac Binary files /dev/null and b/content/home/together_icon1.png differ diff --git a/content/home/togethericon.png b/content/home/togethericon.png new file mode 100644 index 000000000..d5bd72ac7 Binary files /dev/null and b/content/home/togethericon.png differ diff --git a/content/home/vevrse.png b/content/home/vevrse.png new file mode 100644 index 000000000..cf59fc640 Binary files /dev/null and b/content/home/vevrse.png differ diff --git a/content/home/vverse.png b/content/home/vverse.png new file mode 100644 index 000000000..ff9d23c13 Binary files /dev/null and b/content/home/vverse.png differ diff --git a/content/community/x.png b/content/home/x.png similarity index 100% rename from content/community/x.png rename to content/home/x.png diff --git a/content/community/youtube.png b/content/home/youtube.png similarity index 98% rename from content/community/youtube.png rename to content/home/youtube.png index 6a9c2d0cf..aefff096d 100644 Binary files a/content/community/youtube.png and b/content/home/youtube.png differ diff --git a/content/home/zictia.png b/content/home/zictia.png new file mode 100644 index 000000000..232097e53 Binary files /dev/null and b/content/home/zictia.png differ diff --git a/content/host/BG_wide.png b/content/host/BG_wide.png new file mode 100644 index 000000000..9fa758c08 Binary files /dev/null and b/content/host/BG_wide.png differ diff --git a/content/host/V3-08.png b/content/host/V3-08.png new file mode 100644 index 000000000..1a1e3a90c Binary files /dev/null and b/content/host/V3-08.png differ diff --git a/content/host/V3-09.png b/content/host/V3-09.png new file mode 100644 index 000000000..85f064ee7 Binary files /dev/null and b/content/host/V3-09.png differ diff --git a/content/host/V3-10.png b/content/host/V3-10.png new file mode 100644 index 000000000..0ba1ca015 Binary files /dev/null and b/content/host/V3-10.png differ diff --git a/content/host/V3-11.png b/content/host/V3-11.png new file mode 100644 index 000000000..9cf91a41a Binary files /dev/null and b/content/host/V3-11.png differ diff --git a/content/host/V3.png b/content/host/V3.png new file mode 100644 index 000000000..29bcb32c1 Binary files /dev/null and b/content/host/V3.png differ diff --git a/content/host/bg_new.jpg b/content/host/bg_new.jpg new file mode 100644 index 000000000..28caafe10 Binary files /dev/null and b/content/host/bg_new.jpg differ diff --git a/content/host/build_a_node.png b/content/host/build_a_node.png new file mode 100644 index 000000000..5e847498b Binary files /dev/null and b/content/host/build_a_node.png differ diff --git a/content/host/checkerboard1.jpg b/content/host/checkerboard1.jpg new file mode 100644 index 000000000..264abf5b7 Binary files /dev/null and b/content/host/checkerboard1.jpg differ diff --git a/content/host/checkerboard2.jpg b/content/host/checkerboard2.jpg new file mode 100644 index 000000000..9cff677a2 Binary files /dev/null and b/content/host/checkerboard2.jpg differ diff --git a/content/host/earn.png b/content/host/earn.png new file mode 100644 index 000000000..6401b9e3a Binary files /dev/null and b/content/host/earn.png differ diff --git a/content/host/expand_findyourfit_geometric.png b/content/host/expand_findyourfit_geometric.png new file mode 100644 index 000000000..d028f43a9 Binary files /dev/null and b/content/host/expand_findyourfit_geometric.png differ diff --git a/content/host/expand_header.png b/content/host/expand_header.png new file mode 100644 index 000000000..646650b25 Binary files /dev/null and b/content/host/expand_header.png differ diff --git a/content/farm/farm_capacity.png b/content/host/farm_capacity.png similarity index 100% rename from content/farm/farm_capacity.png rename to content/host/farm_capacity.png diff --git a/content/farm/farm_map.png b/content/host/farm_map.png similarity index 100% rename from content/farm/farm_map.png rename to content/host/farm_map.png diff --git a/content/host/farm_new.png b/content/host/farm_new.png new file mode 100644 index 000000000..b91142f5b Binary files /dev/null and b/content/host/farm_new.png differ diff --git a/content/host/farm_value_tft.jpg b/content/host/farm_value_tft.jpg new file mode 100644 index 000000000..ae282fe62 Binary files /dev/null and b/content/host/farm_value_tft.jpg differ diff --git a/content/host/findfit.png b/content/host/findfit.png new file mode 100644 index 000000000..38ec51d2c Binary files /dev/null and b/content/host/findfit.png differ diff --git a/content/host/findfitgeometric.png b/content/host/findfitgeometric.png new file mode 100644 index 000000000..a953e6462 Binary files /dev/null and b/content/host/findfitgeometric.png differ diff --git a/content/host/findyourfit.png b/content/host/findyourfit.png new file mode 100644 index 000000000..929a5372d Binary files /dev/null and b/content/host/findyourfit.png differ diff --git a/content/host/get_a_node.png b/content/host/get_a_node.png new file mode 100644 index 000000000..f1a7556c9 Binary files /dev/null and b/content/host/get_a_node.png differ diff --git a/content/home/grid_wide_1.png b/content/host/grid_wide_1.png similarity index 100% rename from content/home/grid_wide_1.png rename to content/host/grid_wide_1.png diff --git a/content/host/header-R03-8.png b/content/host/header-R03-8.png new file mode 100644 index 000000000..1ed98f639 Binary files /dev/null and b/content/host/header-R03-8.png differ diff --git a/content/host/header_host.jpeg b/content/host/header_host.jpeg new file mode 100644 index 000000000..82b6d9f63 Binary files /dev/null and b/content/host/header_host.jpeg differ diff --git a/content/host/header_host.png b/content/host/header_host.png new file mode 100644 index 000000000..6cd7ffa7e Binary files /dev/null and b/content/host/header_host.png differ diff --git a/content/host/host.png b/content/host/host.png new file mode 100644 index 000000000..c83a75153 Binary files /dev/null and b/content/host/host.png differ diff --git a/content/host/how_it_works.png b/content/host/how_it_works.png new file mode 100644 index 000000000..5cc3b687e Binary files /dev/null and b/content/host/how_it_works.png differ diff --git a/content/host/index.md b/content/host/index.md new file mode 100644 index 000000000..0de710e22 --- /dev/null +++ b/content/host/index.md @@ -0,0 +1,179 @@ +--- +title: "Host" +template: "page.html" +insert_anchor_links: "left" +--- + +
+ + + +{% row(style="header") %} + +![Image](header_host.png#mx-auto) + +||| + +## **Host The Cloud,
Empower Human Potential** + +Regardless of technical knowledge, anyone can now become a cloud service provider, bringing local capacity to where people need it most while earning for your contributions. We call this process **farming**. + +{% end %} + +
+ + + + + +
+ +
+ +{% row(style="center narrow mtop") %} + +## How It Works + +Three simple steps enabling anyone to become a cloud service provider. + +{% end %} + +{% row(style="center between") %} + +![Image](step1.png#mx-auto) + +#### Step 1 +### Host a Node + +
+ +All you need to get started is a modern computer, electricity and network. Once booted with Zero OS, a computer becomes a ThreeFold Node. + +||| + +![Image](step2.png#mx-auto) + +#### Step 2 +### Offer Capacity + +
+ +The capacity of the node gets verified and registered in the ThreeFold Blockchain, securing access to a decentralized autonomous cloud for users and communities. + +||| + +![Image](step3.png#mx-auto) + +#### Step 3 +### Earn Rewards + +
+ +After your node is set up and verified, you’ll be rewarded for the capacity that you provide to the ThreeFold Grid. + +{% end %} + +{% row(style="center between mbottom") %} + + + +{% end %} + +
+
+ + + +
+ + + +{% row( style="center between mtop") %} + +## **Kickstart Your Journey** + +### Documentation and Knowledge + +You can become a cloud service provider and bring local capacity
to where people need it most while earning for your contributions. + +{% end %} + +
+ +{% row( style="centerItem center semiNarrow mbottom") %} + +[![Image](get_a_node.png#mx-auto)](https://marketplace.3node.global/) + +
+ +#### **Get a Node** + +Today, the best way to buy a node is from independent vendors serving various geographical regions. Nodes are optimized for performance and rewards across different price points. + +
+ + + +||| + +[![Image](build_a_node.png#mx-auto)](https://www.manual.grid.tf/documentation/farmers/3node_building/3node_building.html) + +
+ +#### **Build a Node** + +Read our informative guide on how to set up your own 3Node. Optimize your own specs and configuration to ensure a reliable node to join the cloud network. + +
+ + + +{% end %} + + + + + + + +{% row(style="center narrow mtop") %} + +## The ThreeFold Dashboard + +The ThreeFold Dashboard is today's go-to-interface for hosters (farmers) and grid users. Create, update and monitor your nodes, estimate your potential earnings, explore and find available nodes on the grid, and much more. + +{% end %} + +{% row(style="center between mbottom") %} + +![Image](tf_dashboard.png#mx-auto) + +
+ + + +{% end %} + + + +{% row(style="margin") %} + +![Image](people_planet_you.png#mx-auto) + +||| + +## **For People, For the Planet, & For You** + +Our global peer-to-peer connected cloud ensures that data is taking the shortest possible route. It's not just about boosting efficiency; it's about minimizing the environmental impact of data transfer. + +
+ +And the best part? You get to earn for your contributions! As we pave the way for the future, we're all about incentivizing expansion in locations where the grid is still making its way. + +
+ +By joining us on this cloud journey, you're not just investing in technology – you're investing in a sustainable, connected, and rewarding future. + +{% end %} + +
\ No newline at end of file diff --git a/content/host/mockup.png b/content/host/mockup.png new file mode 100644 index 000000000..c6336523a Binary files /dev/null and b/content/host/mockup.png differ diff --git a/content/host/nodeheader.png b/content/host/nodeheader.png new file mode 100644 index 000000000..34cf5e15c Binary files /dev/null and b/content/host/nodeheader.png differ diff --git a/content/farm/offer_2.png b/content/host/offer_2.png similarity index 100% rename from content/farm/offer_2.png rename to content/host/offer_2.png diff --git a/content/host/people_planet_you.png b/content/host/people_planet_you.png new file mode 100644 index 000000000..cdb323e0e Binary files /dev/null and b/content/host/people_planet_you.png differ diff --git a/content/farm/plug_1.png b/content/host/plug_1.png similarity index 100% rename from content/farm/plug_1.png rename to content/host/plug_1.png diff --git a/content/host/step1.png b/content/host/step1.png new file mode 100644 index 000000000..2f66c0e92 Binary files /dev/null and b/content/host/step1.png differ diff --git a/content/host/step2.png b/content/host/step2.png new file mode 100644 index 000000000..a8d7c90d8 Binary files /dev/null and b/content/host/step2.png differ diff --git a/content/host/step3.png b/content/host/step3.png new file mode 100644 index 000000000..953b06d2a Binary files /dev/null and b/content/host/step3.png differ diff --git a/content/host/step4.png b/content/host/step4.png new file mode 100644 index 000000000..e9fb46fcc Binary files /dev/null and b/content/host/step4.png differ diff --git a/content/host/tf_dashboard.png b/content/host/tf_dashboard.png new file mode 100644 index 000000000..72dfe88d3 Binary files /dev/null and b/content/host/tf_dashboard.png differ diff --git a/content/host/togethericon.png b/content/host/togethericon.png new file mode 100644 index 000000000..510341704 Binary files /dev/null and b/content/host/togethericon.png differ diff --git a/content/host/verif.png b/content/host/verif.png new file mode 100644 index 000000000..01f18e121 Binary files /dev/null and b/content/host/verif.png differ diff --git a/content/how/3node.png b/content/how/3node.png deleted file mode 100644 index 76955e5b5..000000000 Binary files a/content/how/3node.png and /dev/null differ diff --git a/content/how/beyond_.png b/content/how/beyond_.png deleted file mode 100644 index 8c137b1d9..000000000 Binary files a/content/how/beyond_.png and /dev/null differ diff --git a/content/how/blueprint_.png b/content/how/blueprint_.png deleted file mode 100644 index d1edc6d34..000000000 Binary files a/content/how/blueprint_.png and /dev/null differ diff --git a/content/how/compatible_.png b/content/how/compatible_.png deleted file mode 100644 index 5656d7e96..000000000 Binary files a/content/how/compatible_.png and /dev/null differ diff --git a/content/how/complementing_.png b/content/how/complementing_.png deleted file mode 100644 index cefae1203..000000000 Binary files a/content/how/complementing_.png and /dev/null differ diff --git a/content/how/edge_.png b/content/how/edge_.png deleted file mode 100644 index 325a0d3e9..000000000 Binary files a/content/how/edge_.png and /dev/null differ diff --git a/content/how/efficient_.png b/content/how/efficient_.png deleted file mode 100644 index 0015b0174..000000000 Binary files a/content/how/efficient_.png and /dev/null differ diff --git a/content/how/grid_decenter.jpg b/content/how/grid_decenter.jpg deleted file mode 100644 index 310bad19a..000000000 Binary files a/content/how/grid_decenter.jpg and /dev/null differ diff --git a/content/how/grid_new_internet.jpg b/content/how/grid_new_internet.jpg deleted file mode 100644 index ba48e723d..000000000 Binary files a/content/how/grid_new_internet.jpg and /dev/null differ diff --git a/content/how/grid_people.jpg b/content/how/grid_people.jpg deleted file mode 100644 index 483736f2c..000000000 Binary files a/content/how/grid_people.jpg and /dev/null differ diff --git a/content/how/grid_scaled.png b/content/how/grid_scaled.png deleted file mode 100644 index f9e19ad0d..000000000 Binary files a/content/how/grid_scaled.png and /dev/null differ diff --git a/content/how/gride_header.png b/content/how/gride_header.png deleted file mode 100644 index 49f5a982c..000000000 Binary files a/content/how/gride_header.png and /dev/null differ diff --git a/content/how/index.md b/content/how/index.md deleted file mode 100644 index 99f8348c0..000000000 --- a/content/how/index.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -title: "How" -template: "page.html" -insert_anchor_links: "left" ---- - - -{% row(style="center") %} - -
-
-
-
-
-
-
-
-
-
-
-
- -### **Internet re-imagined, Internet re-built** - -ThreeFold is an autonomous edge infrastructure delivering storage, compute, and network capacity,
acting as “no middleman” Internet resources between independent capacity providers and users. - -
- -#### **3rd** Generation Technology | **6+** Years Active | **Thousands** of Deployments - -
-
-
-
-
-
-
-
-
-
-
-
- -{% end %} - -{% row(style="center narrow mtop") %} - -![Image](zos.png#medium) - -### **It all starts with a new operating system** - -To revolutionize the Internet, we had to rethink how we host our applications.
Zero OS is an innovative stateless operating system based on the Linux kernel, redesigned for
heightened security, efficiency, and support for true peer-to-peer and decentralized workloads. - -
-
-
-
-
- -{% end %} - -{% row(style="center narrow mtop") %} - -![Image](3node.png#medium) - -### **A computer becomes a 3Node** - -Once booted onto a modern computer with adequate specifications, the computer is essentially locked to only expose raw compute, storage, and network capacity in a seamless and efficient manner. - -
- - - -
-
-
-
-
- -{% end %} - -{% row(style="center narrow mtop") %} - -![Image](provision.png#medium) - -### **Resource provisioning & utilization** - -Now that these Internet resources have been exposed, they are ready to be utilized. First, we gather the necessary deployment information, specifying the workloads we want to deploy. Then, we create a contract on the blockchain. Once the contract is in place, the 3Node diligently reports its resource consumption to the blockchain at regular intervals. - -
- - - -
-
-
-
-
- -{% end %} \ No newline at end of file diff --git a/content/how/layer0.png b/content/how/layer0.png deleted file mode 100644 index 2dd78ef4c..000000000 Binary files a/content/how/layer0.png and /dev/null differ diff --git a/content/how/os_.png b/content/how/os_.png deleted file mode 100644 index be792db73..000000000 Binary files a/content/how/os_.png and /dev/null differ diff --git a/content/how/provision.png b/content/how/provision.png deleted file mode 100644 index 1ca3b22ec..000000000 Binary files a/content/how/provision.png and /dev/null differ diff --git a/content/how/scalable_.png b/content/how/scalable_.png deleted file mode 100644 index 64a676ebf..000000000 Binary files a/content/how/scalable_.png and /dev/null differ diff --git a/content/how/scaled_.png b/content/how/scaled_.png deleted file mode 100644 index 93e504a0a..000000000 Binary files a/content/how/scaled_.png and /dev/null differ diff --git a/content/how/secure_.png b/content/how/secure_.png deleted file mode 100644 index 0090cc40f..000000000 Binary files a/content/how/secure_.png and /dev/null differ diff --git a/content/how/tft_table.png b/content/how/tft_table.png deleted file mode 100644 index 8ba6aaf92..000000000 Binary files a/content/how/tft_table.png and /dev/null differ diff --git a/content/how/zero_os.png b/content/how/zero_os.png deleted file mode 100644 index c5e375f6e..000000000 Binary files a/content/how/zero_os.png and /dev/null differ diff --git a/content/how/zos.png b/content/how/zos.png deleted file mode 100644 index b26fe5920..000000000 Binary files a/content/how/zos.png and /dev/null differ diff --git a/content/newsroom/depin_hub/index.md b/content/newsroom/depin_hub/index.md index 15e80f1ac..84cc3fa07 100644 --- a/content/newsroom/depin_hub/index.md +++ b/content/newsroom/depin_hub/index.md @@ -10,6 +10,7 @@ taxonomies: news-category: [foundation] extra: imgPath: depin_hub.png + isFeatured: true --- diff --git a/content/newsroom/duniayetulaunchdar/index.md b/content/newsroom/duniayetulaunchdar/index.md index 5595a355e..76433e40a 100644 --- a/content/newsroom/duniayetulaunchdar/index.md +++ b/content/newsroom/duniayetulaunchdar/index.md @@ -1,6 +1,6 @@ --- id: duniayetulaunchdar -title: 🇹🇿 Dunia Yetu Launches in Dar Es Salaam +title: 🇹🇿 ThreeFold Announces a Sovereign Internet for Tanzania image_caption: Dunia Yetu launch in Dar description: Dunia Yetu Formally Announced in Dar Es Salaam, in partnership with Tanzania's ICT Commission and Holochain founder, Arthur Brock. date: 2024-01-29 @@ -10,6 +10,7 @@ taxonomies: news-category: [foundation] extra: imgPath: duniayetulaunchdar.png + isFeatured: true --- Recently we formally announced Dunia Yetu, in collaboration with the ICT Commission of Tanzania and Arthur Brock, the founder of Holochain. diff --git a/content/newsroom/endfeb2024update/endfeb2024update.png b/content/newsroom/endfeb2024update/endfeb2024update.png new file mode 100644 index 000000000..22ebd1f2d Binary files /dev/null and b/content/newsroom/endfeb2024update/endfeb2024update.png differ diff --git a/content/newsroom/endfeb2024update/index.md b/content/newsroom/endfeb2024update/index.md new file mode 100644 index 000000000..6f300c4de --- /dev/null +++ b/content/newsroom/endfeb2024update/index.md @@ -0,0 +1,23 @@ +--- +id: endfeb2024update +title: 💡 End of Feb Update from the Team +image_caption: End Of Feb Update +description: Stay tuned for the latest team updates from February and mark your calendars for our upcoming community call! +date: 2024-02-29 +taxonomies: + people: [bernadette_amanda_caster] + tags: [technology,update,threefold_grid,community,news] + news-category: [foundation] +extra: + imgPath: endfeb2024update.png +--- + +Follow the link below to find an update from the ThreeFold team! + +
+ +At a high level, as the grid is now commercially ready, we have been and are focused on making remaining improvements to ensure its scalability, reliability, and usability, and working with some core orgs and partners on bringing utilization to the grid at scale. + +
+ +Read the full update [here](https://forum.threefold.io/t/end-feb-2024-update-from-the-team/4233). We'll be going deeper into these topics in upcoming communication and on the community call in March. \ No newline at end of file diff --git a/content/newsroom/farmerbotupdaterecommended/index.md b/content/newsroom/farmerbotupdaterecommended/index.md index 59e5e7440..281ac1ba1 100644 --- a/content/newsroom/farmerbotupdaterecommended/index.md +++ b/content/newsroom/farmerbotupdaterecommended/index.md @@ -12,7 +12,7 @@ extra: imgPath: farmerbotupdaterecommended.png --- -After much testing, we are recommending all farmers using farmerbot to update to the new and improved version. You can find comprehensive instructions [here](https://www.manual.grid.tf/farmers/farmerbot/farmerbot_intro.html) in the manual. +After much testing, we are recommending all farmers using farmerbot to update to the new and improved version. You can find comprehensive instructions [here](https://www.manual.grid.tf/documentation/farmers/farmerbot/farmerbot_intro.html) in the manual.
diff --git a/content/newsroom/introducingtfrobot/index.md b/content/newsroom/introducingtfrobot/index.md index 7fb0e35bb..b731bf743 100644 --- a/content/newsroom/introducingtfrobot/index.md +++ b/content/newsroom/introducingtfrobot/index.md @@ -9,7 +9,7 @@ taxonomies: tags: [technology,update,threefold_grid,community,news] news-category: [technology] extra: - imgPath: tid: introducingtfrobot.png + imgPath: introducingtfrobot.png --- Meet tfrobot, designed to help you quickly deploy many VMs on the ThreeFold Grid at once. diff --git a/content/newsroom/manual_updates_nov_2023/index.md b/content/newsroom/manual_updates_nov_2023/index.md index a743d8ae1..e8007e501 100644 --- a/content/newsroom/manual_updates_nov_2023/index.md +++ b/content/newsroom/manual_updates_nov_2023/index.md @@ -21,7 +21,7 @@ Take a look at what's new recently, including: GPU Farming, Nomad Clusters, the
- [Dig in for the details](https://forum.threefold.io/t/manual-updates-november-3-2023/4121) -- [Head straight to the manual](https://manual.grid.tf/intro/intro_readme.html) +- [Head straight to the manual](https://manual.grid.tf) - [Join the Grid Tester Community](https://t.me/threefoldtesting)
diff --git a/content/newsroom/manualupdates/index.md b/content/newsroom/manualupdates/index.md index ee058fe82..f511e5ebb 100644 --- a/content/newsroom/manualupdates/index.md +++ b/content/newsroom/manualupdates/index.md @@ -24,7 +24,7 @@ The manual has now been divided into different sections for different audiences
-We look forward to your feedback and keep in mind the manual is open for [contributions from the community](https://manual.grid.tf/contribute/contribute.html). +We look forward to your feedback and keep in mind the manual is open for [contributions from the community](https://www.manual.grid.tf/knowledge_base/collaboration/contribute.html).
diff --git a/content/newsroom/potential_of_tft/index.md b/content/newsroom/potential_of_tft/index.md index 179005649..4bf9597c6 100644 --- a/content/newsroom/potential_of_tft/index.md +++ b/content/newsroom/potential_of_tft/index.md @@ -24,4 +24,4 @@ https://forum.threefold.io/t/the-potential-of-the-threefold-token-tft/1796
-*Now's the time to [get TFT](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html)! This post is a great share for anyone interested in getting involved in the project!* \ No newline at end of file +*Now's the time to [get TFT](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html)! This post is a great share for anyone interested in getting involved in the project!* \ No newline at end of file diff --git a/content/newsroom/whats_next_for_tf/index.md b/content/newsroom/whats_next_for_tf/index.md index 99720c1df..23bfcec73 100644 --- a/content/newsroom/whats_next_for_tf/index.md +++ b/content/newsroom/whats_next_for_tf/index.md @@ -10,6 +10,7 @@ taxonomies: news-category: [foundation] extra: imgPath: whats_next_for_tf.png + isFeatured: true --- After more than five years of building and expanding the open-source ThreeFold Grid, it’s time to go commercial. Read about [what's next](https://threefold.io/next/). diff --git a/content/next/commercial_cloud.png b/content/next/commercial_cloud.png deleted file mode 100644 index 2c07a8c94..000000000 Binary files a/content/next/commercial_cloud.png and /dev/null differ diff --git a/content/next/data_center_s.png b/content/next/data_center_s.png deleted file mode 100644 index 67f993acc..000000000 Binary files a/content/next/data_center_s.png and /dev/null differ diff --git a/content/next/distributed_cloud.png b/content/next/distributed_cloud.png deleted file mode 100644 index fd79e5d49..000000000 Binary files a/content/next/distributed_cloud.png and /dev/null differ diff --git a/content/next/grid_3_decentralized.png b/content/next/grid_3_decentralized.png deleted file mode 100644 index aa21622af..000000000 Binary files a/content/next/grid_3_decentralized.png and /dev/null differ diff --git a/content/next/index.md b/content/next/index.md deleted file mode 100644 index 0e4b61ae2..000000000 --- a/content/next/index.md +++ /dev/null @@ -1,126 +0,0 @@ ---- -title: "Next" -description: "A global movement together building an open-source, community-driven, decentralized Internet – from the ground up." # quotation marks to allow colons where used -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -extra: - author: Your name here - imgPath: images/threefold_globe.png ---- - - - -{% row(style="center narrow") %} - -
-
-
-
- -## ThreeFold Goes **Commercial** - -After more than five years of building and expanding the open-source ThreeFold Grid, it's now time to go commercial. This includes the introduction of a Cooperative model, ThreeFold Cloud services, and some shifts with TFT. - -
- - - - -{% end %} - -{% row(style="reverse center between margin") %} - -### TF Grid 4.x: A Distributed Cloud Platform - -We have always differentiated ourselves from crypto projects. Our belief is in utilizing a token as a utility for creating and using IT (Internet) capacity. Starting with TF Grid 4.x, we are implementing changes that will further set us apart. - -
- -#### ThreeFold Cooperative - -We will use a cooperative as our decentralization mechanism. These are well proven governance structures. Every farmer and buyer of IT Capacity from the TF Grid will be part of this cooperative. Read [more](/blog/threefold-cooperative). - -
- -#### Farming Pools - -A 100% owned subsidiary of the Cooperative in a chosen jurisdiction (probably BVI) will allow the creation of Farming Pools and allow people to buy/sell their TFT in controlled ways in line with governance, as will be defined per Farming Pool. Read [more](/blog/farming-pools). - -||| - -![Image](distributed_cloud.png#medium) - -{% end %} - -{% row(style="reverse center between margin") %} - -![Image](grid_3_decentralized.png#medium) - -||| - -### TF Grid 3.x Goes Fully Decentralized - -ThreeFold DMCC has been instrumental in supporting the expansion of the TF Grid over the years. It is thanks to the generous funding and support of many contributors that the grid has achieved its current state. ThreeFold DMCC will need to limit its effort on TF Grid 3.x and focus completely on TF Grid 4.x. For this reason, TF Grid 3.x must move to become community-run. - -
- -#### Guardians - -We need to find at least nine guardians who will take on several responsibilities including: running validator nodes, verifying minting, deciding on upgrades to the code base, and finding and managing contributors. - -
- -#### Minting & Farming Updates - -The minting rules are becoming more strict thanks to a recently-passed Grid Enhancement Proposal. Only 3Nodes which have enough uptime and are usable for deployments will receive rewards. Starting January 2024, new 3Nodes added to TF Grid 3.x will have a lockup of two years or until 30% utilization on their nodes on generated TFT. (There will be no minting of TFT in TF Grid 4.x) - -{% end %} - -{% row(style="reverse center between margin") %} - -### TF Cloud Builds Commercial Offerings - -ThreeFold Cloud will build and commercialize services, reserving and purchasing the capacity it requires on TF Grid 3.x and 4.x using TFT. - -
- -#### First Offerings - -Two wonderful metaverse projects and a digital education platform will be hosted on our grid (3 & 4). In addition, some exciting products for developers and web publishers will be launched. Each product will have service levels attached and customers will get support from a capable support team. - -
- -#### No TFT? No Problem - -While we believe in TFT and see it as an essential component in the ecosystem, anyone will now be able to use ThreeFold and its services with fiat currencies (e.g. USD, EUR), with conversions happening automatically in the background. - -||| - -![Image](commercial_cloud.png#medium) - -{% end %} - -{% row(style="reverse center between margin") %} - -![Image](data_center_s.png#medium) - -||| - -### ThreeFold Tier S Data Center Concept - -A substantial number of new data centers, ranging from hundreds to thousands, are anticipated for deployment in emerging markets. There's a strong sentiment in these markets favoring a leapfrogging approach, moving beyond the conventional Tier 3 data center model, which is increasingly seen as inadequate. Dive deep [here](https://info.ourworld.tf/datacenter/). - -
- -#### AI Changes the Game - -The advent of AI has significantly altered the landscape and requirements for data center construction. In response to these evolving needs, ThreeFold has innovated a more sustainable, reliable, and cost-effective alternative for data center development. This new concept not only aligns with future demands, but also holds the promise of achieving carbon negativity, potentially removing more CO2 from the atmosphere than it contributes. - -
- -#### The Grid Expands - -We are having serious conversations to deploy a lot of capacity over the next few years. The aim is that these data centers would be 100% sustainable and hyper-reliable. Our goal is to ensure that the capacity provided by these data centers is partially made available globally as an extension to the open-source TF Grid 4.X. This will introduce a substantial amount of capacity into the market. - -{% end %} \ No newline at end of file diff --git a/content/nextfaq/index.md b/content/nextfaq/index.md deleted file mode 100644 index 25a52dba7..000000000 --- a/content/nextfaq/index.md +++ /dev/null @@ -1,103 +0,0 @@ ---- -title: "Next | FAQs" -description: "A global movement together building an open-source, community-driven, decentralized Internet – from the ground up." # quotation marks to allow colons where used -date: 2018-09-14T21:00:00-05:00 -updated: 2021-02-20T14:40:00-06:00 -draft: false -extra: - author: Your name here - imgPath: images/threefold_globe.png ---- - - - -{% row(style="center narrow") %} - -
-
-
-
- -## ThreeFold Goes Commercial | **FAQs** - -ThreeFold's next phase is about commercialization and utilization. Some changes are coming which we believe are in the benefit of the project and all of us. Got questions? We've got answers. - -
- - - -{% end %} - -{% row(style="reverse center between margin") %} - -#### Is the grid reliable? How will I be able to ensure my workloads are safe? - -From a pure tech perspective, redundancy can be achieved by means of the quantum safe storage system, replication, Web Gateways, and more. However, this is too difficult for the starting user and we will need more tooling around it. Beyond that, in Grid 4.x, TF Cloud will provide support, Service Level Agreements, and easy credit card payments to provide a safe, smooth, and reliable experience. Farming pools will help as well, providing visibility into who is who and clarifying reputation regarding who reached which levels of service, uptime, and so on. Learn more [here](/blog/reliability). - -
- -#### So now there will be two grids? Why? - -One infrastructure, two grid versions. Now is the time for the project to go commercial and in order to present a reliable offering, TF Grid 4.x is necessary and will need to be the primary focus of the ThreeFold DMCC team. TF Grid 3.x will live on as a community-owned and operated entity, the perfect place for open source builders, Web3 enthusiasts, and testing. - -
- -#### What is a cooperative and why are we moving in that direction? - -A [cooperative](https://www.ica.coop/en/cooperatives/what-is-a-cooperative) is an autonomous association of persons united voluntarily to meet their common economic, social and cultural needs and aspirations through a jointly owned and democratically controlled enterprise. In the next phase of ThreeFold it is crucial we have governance done well and in a way which is widely accepted. Cooperatives present a well-proven governance structure. Read [more](/blog/threefold-cooperative). - -
- -#### Can you explain more about farming pools? - -Farming pools allow farmers to group together and adhere to minimum service level agreements in order to provide reliability and trustworthiness for people using the capacity. Every 4.0 Farmer will be required to join a farming pool. Farming pools will have the opportunity to set the pricing for services they provide, and the option to stake on their farms. The pools will also prvide a regulated and centralized approach to staking, holding, selling, and buying of TFT. All in all, this creates a more simple and trustworthy experience for customers. Read [more](/blog/farming-pools). - -
- -#### What will marketing look like in the new system? - -Marketing and promotion will be done by different participants: the new ThreeFold Cooperative, TF Cloud, OurWorld promoted ventures, and more. Each of them will have their own teams, purpose, mission, vision, and funding sources. Therefore it will be more of a collaborative ecosystem approach rather than one entity responsible for all. - -
- -#### Will there be a strategy for node vendors? - -In Grid 3.x, things remain the same. In 4.x, there is the new concept of farming pools. Node vendors can create their own farming pool or work with another one to define the rewards. For example, if a node vendor is also giving support and the farming pool is doing the publicity, the vendors and node hosters can split the revenue at their own discretion. - -
- -#### What do we expect for the TFT? - -TFT remains a crucial component of our project. We are not here to speculate but there are some considerations and we have our own beliefs: - -
- -Previously the limit for total tokens in the ecosystem was 4 billion. To date, +-900 million tokens have been minted. With rules of farming becoming more strict in Grid 3.x and the halting of minting from Grid 4.x, we anticipate a positive impact on the market value of TFT, aligning with our commitment to sustainable and value-driven growth. - -
- -Please note that TFT should not be seen as an investment instrument. - -
- -#### What happens for the validators? - -There are three intriguing ways for people to use their acquired tokens: - -
- -1. Staking on the validators in 3.x. For the moment, we have to find the nine initial guardians. As a note, the ward went from 5% to 25% on revenue. -2. Staking in Farming Pools in 4.x. Discount levels and other rewards to be determined. -3. Staking on 3Nodes in 4.x. This is needed for reputation with slashing potential. - -
- -Note: There has been a change in architecture since the validator program was concieved. We will go all in for peer-to-peer and a regulated approach. - -
- -#### I have more questions - -Great! We're happy to answer. We invite you to join the forum and ask your questions [there](https://forum.threefold.io/t/november-30-2023-threefold-community-call-recording/4153). - -{% end %} \ No newline at end of file diff --git a/content/partners/aiqom/index.md b/content/partners/aiqom/index.md index f4beac4ba..b4b520bcb 100644 --- a/content/partners/aiqom/index.md +++ b/content/partners/aiqom/index.md @@ -47,7 +47,7 @@ AIQOM empowers people of all ages to become responsible AI Citizens to easily le ## Powered by ThreeFold -AIQOM want to use the ThreeFold's [3Bot technology](https://threefold.io/info/threefold#/threefold__part2_decentralized_is_different_centralized) as a backend to their AI system. 3Bot technology will help provide more privacy, scale and energy-efficiency to AIQOM personal AI solutions. Additionally, AIQOM can make Digital Twins more intelligent and responsive in a sustainable way to satisfy the needs of our day-to-day digital life. It is the fusion of AI and our personal digital life. +AIQOM want to use the ThreeFold's 3Bot technology as a backend to their AI system. 3Bot technology will help provide more privacy, scale and energy-efficiency to AIQOM personal AI solutions. Additionally, AIQOM can make Digital Twins more intelligent and responsive in a sustainable way to satisfy the needs of our day-to-day digital life. It is the fusion of AI and our personal digital life.

Expectation is to have joint products out by end 2021. diff --git a/content/partners/le_ciel_foundation/index.md b/content/partners/le_ciel_foundation/index.md index 178e00c82..01f8ce37a 100644 --- a/content/partners/le_ciel_foundation/index.md +++ b/content/partners/le_ciel_foundation/index.md @@ -19,13 +19,6 @@ extra: linkedin: https://www.linkedin.com/company/le-ciel-foundation/ --- -
- - - -
- - ## About Humanity is facing unprecedented ecological and societal crises. diff --git a/content/partners/money_of_good/index.md b/content/partners/money_of_good/index.md index 26fbac6bc..445de2c42 100644 --- a/content/partners/money_of_good/index.md +++ b/content/partners/money_of_good/index.md @@ -50,11 +50,6 @@ Driving the transition to a new fair and sustainable economy while raising consc The main direct impacts are the raise of global consciousness and the birth of a new regenerative and conscious economic model. The sub impacts are the improvement of global health, the empowerment of individuals economically by minimizing inequality, and the leverage of sustainable local businesses. -
- - - -
## Powered by ThreeFold diff --git a/content/partners/ootopia/index.md b/content/partners/ootopia/index.md index 379080efe..3e25004e7 100644 --- a/content/partners/ootopia/index.md +++ b/content/partners/ootopia/index.md @@ -58,7 +58,7 @@ We are heading towards a total global collapse whose consequences will undoubted

-Effective actions is not being taken bu global leaders, politicians or corporations. +Effective actions are not being taken by global leaders, politicians or corporations.

diff --git a/content/partners/seeds/index.md b/content/partners/seeds/index.md index 81f6852cb..6f20a2c3f 100644 --- a/content/partners/seeds/index.md +++ b/content/partners/seeds/index.md @@ -14,7 +14,7 @@ extra: image_caption: seeds partner_logo: seedsLogo.png members: [rieki_cordon, nikolaus_heger, franz_josef_allmayer] - websites: https://www.joinseeds.com/ + websites: https://joinseeds.earth/ private: 0 linkedin: https://www.linkedin.com/company/seeds-the-conscious-currency/about/ --- @@ -27,7 +27,7 @@ extra: ## About -[SEEDS](https://www.joinseeds.com/) is a regenerative financial system for a thriving global society. A global movement that aligns radical empowerment of purpose with finance with the mission to bring about a modern day Renaissance. Since its alpha release on November 5th 2019 and its public launch in March 2020, SEEDS has gathered 150+ alliance members from across multiple bioregions. We're leaving the age of siloed competition where people and planet were exploited by systems and entering an age of cooperation where the people are in direct control and ownership of the abundant systems they inhabit. We are in the stage of cultivating a grassroots movement uniting the people and organizations dedicated to a breakthrough towards genuine sustainability, freedom, and peace. +[SEEDS](https://joinseeds.earth/) is a regenerative financial system for a thriving global society. A global movement that aligns radical empowerment of purpose with finance with the mission to bring about a modern day Renaissance. Since its alpha release on November 5th 2019 and its public launch in March 2020, SEEDS has gathered 150+ alliance members from across multiple bioregions. We're leaving the age of siloed competition where people and planet were exploited by systems and entering an age of cooperation where the people are in direct control and ownership of the abundant systems they inhabit. We are in the stage of cultivating a grassroots movement uniting the people and organizations dedicated to a breakthrough towards genuine sustainability, freedom, and peace.
diff --git a/content/partners/spinn/index.md b/content/partners/spinn/index.md index d262d4bbf..6c5755400 100644 --- a/content/partners/spinn/index.md +++ b/content/partners/spinn/index.md @@ -44,7 +44,7 @@ Our mission is to reimagine coffee for the connected age, and the discerning cof ## Impact -Coffee farmers and roasters around the world - those that follow centuries of coffee tradition and have dedicated their lives to coffee - are getting increasingly frustrated with the industry that is not rewarding their craftsmanshift to deliver and create the coffee experience for the consumer. The coffee industry has developed monopolies in which the largest portion of rewards are reserved for coffee wholesalers and retailers, not the craftsman that grow and roast the coffee beans. +Coffee farmers and roasters around the world - those that follow centuries of coffee tradition and have dedicated their lives to coffee - are getting increasingly frustrated with the industry that is not rewarding their craftsmanship to deliver and create the coffee experience for the consumer. The coffee industry has developed monopolies in which the largest portion of rewards are reserved for coffee wholesalers and retailers, not the craftsman that grow and roast the coffee beans.
The coffeetrade is a massive **$362bn** worldwide market and there is a growing consciousness of taking action against unfair and old fashioned business models. diff --git a/content/partners/ubuntu/index.md b/content/partners/ubuntu/index.md index 990f99a81..e88f94d6e 100644 --- a/content/partners/ubuntu/index.md +++ b/content/partners/ubuntu/index.md @@ -63,7 +63,7 @@ Ubuntu Tribe's ultimate aim is wealth distribution and financial empowerment acr ## Powered by ThreeFold -ThreeFold's unique decentralized, uncontrolled Internet solution serves as a perfect foundation for Ubuntu's digital, social commerce platform. Together we can secure equeal financial oportunities distributed globally and with full ownership in the most secure way. +ThreeFold's unique decentralized, uncontrolled Internet solution serves as a perfect foundation for Ubuntu's digital, social commerce platform. Together we can secure equal financial opportunities distributed globally and with full ownership in the most secure way. ## Join saving our planet! diff --git a/content/partners/vlinder/index.md b/content/partners/vlinder/index.md index 02707eebf..8b08e93cc 100644 --- a/content/partners/vlinder/index.md +++ b/content/partners/vlinder/index.md @@ -27,7 +27,7 @@ extra: ## About -[Vlinder](https://vlinder.app) means butterfly in Dutch. We believe in the butterfly effect of a small behavioral change in a connected world. We envision the Vlinder app as a tool empowering you to make those changes. You will be able to know and mitigate your personal environmental footprint by investing in high-impact products and connecting with sustainability-focused businesses. We will provide you with a helicopter view of your bank cards, crypto wallets, and cash expenses while automatically estimating your carbon footprint. You will be able to contribute to community projects and make a profit from offsetting your CO2 emissions by investing in green products with high return. +[Vlinder](https://vlinderclimate.com/) means butterfly in Dutch. We believe in the butterfly effect of a small behavioral change in a connected world. We envision the Vlinder app as a tool empowering you to make those changes. You will be able to know and mitigate your personal environmental footprint by investing in high-impact products and connecting with sustainability-focused businesses. We will provide you with a helicopter view of your bank cards, crypto wallets, and cash expenses while automatically estimating your carbon footprint. You will be able to contribute to community projects and make a profit from offsetting your CO2 emissions by investing in green products with high return.
@@ -52,7 +52,7 @@ Vlinder will provide carbon offset options for ThreeFold ecosystem making it pla We invite you to join us on this journey of creating an ecosystem for conscious consumption and sustainable financial decisions.

-How can you contribute? First of all, by becoming our first user. [The Vlinder app beta](https://vlinder.app) is available for iOS and Android in the eurozone countries. +How can you contribute? First of all, by becoming our first user. The Vlinder app is available for [iOS](https://apps.apple.com/in/app/vlinder-exchange/id1489175523) and [Android](https://play.google.com/store/apps/details?id=at.atoma.vlinder&hl=en&gl=US&pli=1) in the eurozone countries.

If you are in Germany or Austria and run a sustainable business or manage an impact community, feel free to reach out to us to discuss possible partnerships. diff --git a/content/people/_index.md b/content/people/_index.md index 069c96fd0..dcb78f03c 100644 --- a/content/people/_index.md +++ b/content/people/_index.md @@ -5,5 +5,5 @@ sort_by: "weight" template: "layouts/people.html" page_template: "partials/personCard.html" insert_anchor_links: "left" -description: "Our team brings together +30 years of experience in cloud automation, Internet storage, and infrastructure services. We are a passionate group on a collective mission to improve the planet’s situation and benefit the people around us." +description: "Our team brings together +30 years of experience in cloud automation, Internet storage, and infrastructure services. We are a passionate group on a collective mission to make the world a better place for the people around us." --- diff --git a/content/people/emilie_ouwerx/emilie_ouwerx.jpeg b/content/people/emilie_ouwerx/emilie_ouwerx.jpeg new file mode 100644 index 000000000..2e2520534 Binary files /dev/null and b/content/people/emilie_ouwerx/emilie_ouwerx.jpeg differ diff --git a/content/people/emilie_ouwerx/index.md b/content/people/emilie_ouwerx/index.md new file mode 100644 index 000000000..e9e9f628c --- /dev/null +++ b/content/people/emilie_ouwerx/index.md @@ -0,0 +1,22 @@ +--- +title: Emilie Ouwerx +weight: 3 +description: Emilie is interested in examining the ways in which digital technologies can amplify existing economic, social, and global inequalities and theorising regulatory solutions. +taxonomies: + people: [emilie_ouwerx] + memberships: [foundation] + categories: [foundation] +extra: + imgPath: emilie_ouwerx.jpeg + organizations: [threefold_foundation] + countries: [] + cities: [] + private: 0 + socialLinks: { + LinkedIn: https://www.linkedin.com/in/emilieouwerx, + github: , + websites: , + } +--- + +Emilie is interested in examining the ways in which digital technologies can amplify existing economic, social, and global inequalities and theorising regulatory solutions. She is starting her MSc in the Social Science of the Internet in October 2024, with a particular focus on the politics of technologies in the Global South and the impacts of Western technological ideologies on development practices. Currently, she is gaining practical experience as an intern with ThreeFold. \ No newline at end of file diff --git a/content/people/kristof_de_spiegeleer/index.md b/content/people/kristof_de_spiegeleer/index.md index 1e17c53a4..1ad2f563e 100644 --- a/content/people/kristof_de_spiegeleer/index.md +++ b/content/people/kristof_de_spiegeleer/index.md @@ -1,6 +1,6 @@ --- title: Kristof de Spiegeleer -weight: 1 +weight: 0 description: Nerd engineer, humanist & motivated entrepreneur. taxonomies: people: [kristof_de_spiegeleer] diff --git a/content/people/owen_kemp/index.md b/content/people/owen_kemp/index.md index 6419f79fc..d649b90fb 100644 --- a/content/people/owen_kemp/index.md +++ b/content/people/owen_kemp/index.md @@ -18,14 +18,16 @@ extra: } --- -
-
- -
-
-## Why Threefold? + +### Why Threefold? I believe in decentralisation and democracy in our digital lives. Owen Kemp is an experienced executive in the IT space, having led several multi-billion dollar businesses for HP in all world-wide markets. He was responsible for HP’s world-wide Finance Industry business, launched HP in to the emerging markets of Sub-Saharan Africa and Middle East and ran HP’s subsidiary in Russia with an emphasis on improving balance of trade, R&D and corporate citizenship. Since leaving HP, Owen has focused on assisting start-ups (early to late stage) with his broad management and market experience. Among others he has worked with cutting-edge companies in Cloud- and Edge computing; Smart City technologies; Eco-Tech; Fin-Tech; Reg-Tech and Digital Marketing; Block-chain and Cryptocurrency. In addition to working with Private Equity funds in New York, Russia and Austria, he was also advising various Family Offices. He is also an advisor to the Austrian Government in attracting foreign investment to Austria. Owen is a professional management consultant, coach and mentor and has helped many companies in improving their strategy including business development, internationalisation, Go-To-Market and partnership strategy, recruitment and more. Owen has known and worked with Kristof de Spiegeleer since 2011 and is now fully on board of the ThreeFold Foundation and TF Tech. + +
+
+ +
+
\ No newline at end of file diff --git a/content/people/rob_van_mieghem/index.md b/content/people/rob_van_mieghem/index.md deleted file mode 100644 index 7d6b8c00e..000000000 --- a/content/people/rob_van_mieghem/index.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Rob Van Mieghem -weight: 1 -description: Technology today does not sufficiently support my personal believes of how a better world might look like. -taxonomies: - people: [rob_van_mieghem] - memberships: [foundation, tech, technology_council, cofounders] - categories: [foundation] -extra: - imgPath: rob_van_mieghem.jpeg - organizations: [threefold_tech] - countries: [Belgium] - cities: [Gent] - private: 0 - socialLinks: { - LinkedIn: https://www.linkedin.com/in/robvanmieghem/, - github: https://github.com/robvanmieghem, - websites: https://threefold.tech, - } ---- - -Equality of opportunity is a fundamental right in my opinion. So is privacy that goes beyond being a personal right as it is a necessity for democracy to function. A better world is something that starts with yourself. Technology today does not sufficiently support my personal believes of how a better world might look like, especially not how it is made available to the majority of the world population. I'm a nerd and proud of it so let's start doing what is right. diff --git a/content/people/rob_van_mieghem/rob_van_mieghem.jpeg b/content/people/rob_van_mieghem/rob_van_mieghem.jpeg deleted file mode 100644 index d6974d2cb..000000000 Binary files a/content/people/rob_van_mieghem/rob_van_mieghem.jpeg and /dev/null differ diff --git a/content/people/rob_van_mieghem/rob_van_mieghem.png b/content/people/rob_van_mieghem/rob_van_mieghem.png deleted file mode 100644 index 4edef8798..000000000 Binary files a/content/people/rob_van_mieghem/rob_van_mieghem.png and /dev/null differ diff --git a/content/people/threefold_community/index.md b/content/people/threefold_community/index.md index 22bdc49df..d0c3a489f 100644 --- a/content/people/threefold_community/index.md +++ b/content/people/threefold_community/index.md @@ -1,6 +1,6 @@ --- title: ThreeFold Community -weight: 0 +weight: 200 description: Together we build! taxonomies: people: [threefold_community] diff --git a/content/people/weynand_kuijpers/index.md b/content/people/weynand_kuijpers/index.md deleted file mode 100644 index 930c29b51..000000000 --- a/content/people/weynand_kuijpers/index.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Weynand Kuijpers -weight: 1 -description: An international entrepreneur and part of a diverse team of innovators. -taxonomies: - people: [weynand_kuijpers] - memberships: [foundation, cofounders, farmers, aci_members] - categories: [foundation, aci, farming, cloud] -extra: - imgPath: weynand_kuijpers.png - organizations: [threefold_foundation, threefold_tech] - countries: [UAE, Spain] - cities: [Dubai, Madrid] - private: 0 - socialLinks: { - LinkedIn: https://www.linkedin.com/in/weynandkuijpers/, - github: https://github.com/weynandkuijpers, - websites: https://threefold.io/, https://threefold.tech, - } ---- - -
-
- -
-
- -Weynand is a rocket scientist that loves slingshotting new technologies into customer-centric orbits. He has been working with teams at the start of the internet and spent the celebration of the year 2000 sitting in a datacenter. Nothing happened there and then but in the following years he developed a growing interest to help, optimise and simplify the world of IT. First follower, team player and very passionate about bringing equal opportunities to young talent around the world. For Weynand, the Internet is where the next generation will expand their minds and innovate. He experienced this first-hand when his son outsmarted him by learning online how to boil an egg in a microwave. Such learning ability should be available globally, sustainably and efficiently. diff --git a/content/people/weynand_kuijpers/weynand_kuijpers.png b/content/people/weynand_kuijpers/weynand_kuijpers.png deleted file mode 100644 index 56f0d65b6..000000000 Binary files a/content/people/weynand_kuijpers/weynand_kuijpers.png and /dev/null differ diff --git a/content/people/weynand_kuijpers/weynand_kuijpers2.jpeg b/content/people/weynand_kuijpers/weynand_kuijpers2.jpeg deleted file mode 100644 index 2e4b5d074..000000000 Binary files a/content/people/weynand_kuijpers/weynand_kuijpers2.jpeg and /dev/null differ diff --git a/content/support/ask.png b/content/support/ask.png deleted file mode 100644 index a4b0921d4..000000000 Binary files a/content/support/ask.png and /dev/null differ diff --git a/content/support/for_all.png b/content/support/for_all.png deleted file mode 100644 index e87d9193d..000000000 Binary files a/content/support/for_all.png and /dev/null differ diff --git a/content/support/index.md b/content/support/index.md deleted file mode 100644 index 9c113256a..000000000 --- a/content/support/index.md +++ /dev/null @@ -1,73 +0,0 @@ ---- -title: "Support" -template: "page.html" -insert_anchor_links: "left" ---- - -
- - - -{% row(style="center narrow") %} - - -## Get in Touch
**with ThreeFold** - - -{% end %} - -{% row(style="center between") %} - -[![Image](support_join.png)](https://t.me/threefold) - - -||| - -[![Image](support_press.png)](https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=press@threefold.io) - - -||| - -[![Image](for_all.png)](https://mail.google.com/mail/u/0/?fs=1&tf=cm&source=mailto&to=info@threefold.io) - - -{% end %} - - -
- -
- -
- - - - -{% row(bgColor="#f2f2f2" style="center margin") %} - -## Frequently Asked
**Questions** - -Check out the most common questions from the community.
There's a good chance your answer is there already! - - - - - -{% end %} - - - - - -{% row(style="center ") %} - -![Image](ask.png#mx-auto) -
- -## Have a Question About
**Building on ThreeFold?** - - - - - -{% end %} \ No newline at end of file diff --git a/content/support/support_join.png b/content/support/support_join.png deleted file mode 100644 index 40971377c..000000000 Binary files a/content/support/support_join.png and /dev/null differ diff --git a/content/support/support_press.png b/content/support/support_press.png deleted file mode 100644 index d47a7b375..000000000 Binary files a/content/support/support_press.png and /dev/null differ diff --git a/content/tfLabs/_index.md b/content/tfLabs/_index.md new file mode 100644 index 000000000..5270d09e4 --- /dev/null +++ b/content/tfLabs/_index.md @@ -0,0 +1,61 @@ +--- +title: "TF Labs" +template: "section.html" +insert_anchor_links: "left" +--- + + + +
+ +
+ +{% row(style="center") %} + +### **ThreeFold Labs IT** + +
+ +ThreeFold Labs IT is a company organized and existing + +under the laws of the United Arab Emirates + +with license number 934955. + +
+
+ +*Warehouse 88:89* + +*Al Jaddaf Dry Docks* + +*P.O Box 283182* + +*Dubai, United Arab Emirates* + +
+ +
+ +Please get in touch at [info@threefold.io](mailto:info@threefold.io.) + +||| + +
+
+
+
+ +
+ + + +{% end %} + + + + + + + + diff --git a/content/tft/coin_logo.png b/content/tft/coin_logo.png deleted file mode 100644 index d639a1d1c..000000000 Binary files a/content/tft/coin_logo.png and /dev/null differ diff --git a/content/tft/cointelegraph_logo.png b/content/tft/cointelegraph_logo.png deleted file mode 100644 index 1e47691ea..000000000 Binary files a/content/tft/cointelegraph_logo.png and /dev/null differ diff --git a/content/tft/earn_.png b/content/tft/earn_.png deleted file mode 100644 index ba14ada5a..000000000 Binary files a/content/tft/earn_.png and /dev/null differ diff --git a/content/tft/get_tft_button.png b/content/tft/get_tft_button.png deleted file mode 100644 index 3c89d8582..000000000 Binary files a/content/tft/get_tft_button.png and /dev/null differ diff --git a/content/tft/iinch_button.png b/content/tft/iinch_button.png deleted file mode 100644 index 2b2038b1a..000000000 Binary files a/content/tft/iinch_button.png and /dev/null differ diff --git a/content/tft/index.md b/content/tft/index.md deleted file mode 100644 index 6859c64ce..000000000 --- a/content/tft/index.md +++ /dev/null @@ -1,89 +0,0 @@ ---- -title: "Token" -template: "page.html" -page_template: "tft_header.html" -insert_anchor_links: "left" ---- - - - -{% row(style="center mtop narrow") %} - -## **TFT**: The Medium of **Exchange** - -TFT is a way to exchange value within the ThreeFold ecosystem, not an individual product. Our belief is in utilizing a token as a mechanism for creating and using IT (Internet) capacity, which is essential for enabling our digital lives. - -
- -*TFT is not a product on its own and we do not consider ourselves as a crypto project. Learn about our [next chapter](/next).* - -
- - - - - -{% end %} - - - -{% row(style="center mtop") %} - -![](use_.png#icon) -### **Use TFT** -Build applications, store data and access decentralized services on the ThreeFold Grid. - -||| - -![](earn_.png#icon) -### **Earn Discounts** -Hold your TFT and earn up to 60% discounts on Internet capacity. - -||| - -![](stake_.png#icon) -### **Stake TFT** -Soon you will be able to partake in the network's decentralization and earn rewards. - -{% end %} - - - -{% row(style="center mtop narrow") %} - -## **Get** TFT - -There are multiple ways to acquire TFT, depending on your preferences. To start, you need to have a supporting wallet to store your TFT. Find out more here. Then, follow the path you prefer most. - -
- - - -{% end %} - -{% row(style="center") %} - -### **Swap** -Trade or swap other digital currencies for TFT. Leverage swapping services available on Decentralized Exchanges or Automated Market Makers to exchange your tokens for TFT. - -||| - -### **From ThreeFold** -Purchase TFT using fiat currency directly from ThreeFold's Official Live Desk, or ThreeFold's official TFT Shop. - -||| - -### **From Farmers** -Engage with Farmers to purchase TFT directly from them, contributing to the growth and decentralization of the ThreeFold network. - -{% end %} - -{% row(style="center mtop narrow") %} - -*It's important to explore the available options and select the most convenient and secure method for acquiring TFT. Always exercise caution and ensure the legitimacy and reliability of the platforms or individuals you engage with to obtain TFT.* - -
- -*Please be reminded that TFT is not to be considered as an investment instrument. More info [here](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html#disclaimer).* - -{% end %} \ No newline at end of file diff --git a/content/tft/ourpartners.png b/content/tft/ourpartners.png deleted file mode 100644 index 7ab4843bf..000000000 Binary files a/content/tft/ourpartners.png and /dev/null differ diff --git a/content/tft/pancack_button.png b/content/tft/pancack_button.png deleted file mode 100644 index 5761a19dd..000000000 Binary files a/content/tft/pancack_button.png and /dev/null differ diff --git a/content/tft/stake_.png b/content/tft/stake_.png deleted file mode 100644 index cd40e1354..000000000 Binary files a/content/tft/stake_.png and /dev/null differ diff --git a/content/tft/stellar_logo.png b/content/tft/stellar_logo.png deleted file mode 100644 index 10d2e849c..000000000 Binary files a/content/tft/stellar_logo.png and /dev/null differ diff --git a/content/tft/tft_125zb.png b/content/tft/tft_125zb.png deleted file mode 100644 index 739cb3d79..000000000 Binary files a/content/tft/tft_125zb.png and /dev/null differ diff --git a/content/tft/tft_1b.png b/content/tft/tft_1b.png deleted file mode 100644 index 0fdd67631..000000000 Binary files a/content/tft/tft_1b.png and /dev/null differ diff --git a/content/tft/tft_70b.png b/content/tft/tft_70b.png deleted file mode 100644 index 38d64eb4c..000000000 Binary files a/content/tft/tft_70b.png and /dev/null differ diff --git a/content/tft/tft_800.png b/content/tft/tft_800.png deleted file mode 100644 index 546c3704c..000000000 Binary files a/content/tft/tft_800.png and /dev/null differ diff --git a/content/tft/tft_burn.jpg b/content/tft/tft_burn.jpg deleted file mode 100644 index 1c47b41f0..000000000 Binary files a/content/tft/tft_burn.jpg and /dev/null differ diff --git a/content/tft/tft_currency.png b/content/tft/tft_currency.png deleted file mode 100644 index 84d26f602..000000000 Binary files a/content/tft/tft_currency.png and /dev/null differ diff --git a/content/tft/tft_header.png b/content/tft/tft_header.png deleted file mode 100644 index 370e2110f..000000000 Binary files a/content/tft/tft_header.png and /dev/null differ diff --git a/content/tft/tft_join_internet.png b/content/tft/tft_join_internet.png deleted file mode 100644 index 76656e6f7..000000000 Binary files a/content/tft/tft_join_internet.png and /dev/null differ diff --git a/content/tft/tft_loyalty.jpg b/content/tft/tft_loyalty.jpg deleted file mode 100644 index 82ed6d0ba..000000000 Binary files a/content/tft/tft_loyalty.jpg and /dev/null differ diff --git a/content/tft/tft_network.png b/content/tft/tft_network.png deleted file mode 100644 index ff394303d..000000000 Binary files a/content/tft/tft_network.png and /dev/null differ diff --git a/content/tft/tft_utility.jpg b/content/tft/tft_utility.jpg deleted file mode 100644 index 93683aa48..000000000 Binary files a/content/tft/tft_utility.jpg and /dev/null differ diff --git a/content/tft/use_.png b/content/tft/use_.png deleted file mode 100644 index fe2b22d55..000000000 Binary files a/content/tft/use_.png and /dev/null differ diff --git a/content/tftfaq/q3/index.md b/content/tftfaq/q3/index.md index 28299228d..2aa6b65b9 100644 --- a/content/tftfaq/q3/index.md +++ b/content/tftfaq/q3/index.md @@ -11,6 +11,6 @@ The most used platforms are: 1. [Pancake Swap](https://library.threefold.me/info/threefold#/tokens/threefold__tft_binance_defi) to exchange any Binance Smart Chain token to TFT. -3. [Stellar DEX](https://manual.grid.tf/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr.html) to exchange XLM or other stellar based tokens to TFT (multiple wallets and DEX UI supported). +3. [Stellar DEX](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html) to exchange XLM or other stellar based tokens to TFT (multiple wallets and DEX UI supported). -Learn more about the other buying options [here](https://manual.grid.tf/threefold_token/buy_sell_tft/buy_sell_tft.html) +Learn more about the other buying options [here](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/buy_sell_tft.html) diff --git a/content/utilization/BG_wide.png b/content/utilization/BG_wide.png new file mode 100644 index 000000000..9fa758c08 Binary files /dev/null and b/content/utilization/BG_wide.png differ diff --git a/content/utilization/Farming.png b/content/utilization/Farming.png new file mode 100644 index 000000000..6b902a694 Binary files /dev/null and b/content/utilization/Farming.png differ diff --git a/content/utilization/Forum.png b/content/utilization/Forum.png new file mode 100644 index 000000000..8df9bf8e5 Binary files /dev/null and b/content/utilization/Forum.png differ diff --git a/content/utilization/Open-Source.png b/content/utilization/Open-Source.png new file mode 100644 index 000000000..d5edf3e0f Binary files /dev/null and b/content/utilization/Open-Source.png differ diff --git a/content/utilization/Support.png b/content/utilization/Support.png new file mode 100644 index 000000000..961e1f1c0 Binary files /dev/null and b/content/utilization/Support.png differ diff --git a/content/utilization/bg_new.jpg b/content/utilization/bg_new.jpg new file mode 100644 index 000000000..28caafe10 Binary files /dev/null and b/content/utilization/bg_new.jpg differ diff --git a/content/utilization/build_header_geometric.png b/content/utilization/build_header_geometric.png new file mode 100644 index 000000000..78e81e184 Binary files /dev/null and b/content/utilization/build_header_geometric.png differ diff --git a/content/utilization/build_new.png b/content/utilization/build_new.png new file mode 100644 index 000000000..2bfe11c77 Binary files /dev/null and b/content/utilization/build_new.png differ diff --git a/content/utilization/buildheader.png b/content/utilization/buildheader.png new file mode 100644 index 000000000..955f3ec8d Binary files /dev/null and b/content/utilization/buildheader.png differ diff --git a/content/utilization/checkerboard1.jpg b/content/utilization/checkerboard1.jpg new file mode 100644 index 000000000..264abf5b7 Binary files /dev/null and b/content/utilization/checkerboard1.jpg differ diff --git a/content/utilization/checkerboard2.jpg b/content/utilization/checkerboard2.jpg new file mode 100644 index 000000000..9cff677a2 Binary files /dev/null and b/content/utilization/checkerboard2.jpg differ diff --git a/content/utilization/dedicated.png b/content/utilization/dedicated.png new file mode 100644 index 000000000..73a9e0a30 Binary files /dev/null and b/content/utilization/dedicated.png differ diff --git a/content/utilization/farming1.png b/content/utilization/farming1.png new file mode 100644 index 000000000..c99fa3009 Binary files /dev/null and b/content/utilization/farming1.png differ diff --git a/content/utilization/forum1.png b/content/utilization/forum1.png new file mode 100644 index 000000000..ef58e902e Binary files /dev/null and b/content/utilization/forum1.png differ diff --git a/content/utilization/freezone.png b/content/utilization/freezone.png new file mode 100644 index 000000000..819945ae3 Binary files /dev/null and b/content/utilization/freezone.png differ diff --git a/content/utilization/header_build.png b/content/utilization/header_build.png new file mode 100644 index 000000000..677a805f6 Binary files /dev/null and b/content/utilization/header_build.png differ diff --git a/content/utilization/header_ecosystem.png b/content/utilization/header_ecosystem.png new file mode 100644 index 000000000..7c5c3d8dd Binary files /dev/null and b/content/utilization/header_ecosystem.png differ diff --git a/content/utilization/hostservice_new.png b/content/utilization/hostservice_new.png new file mode 100644 index 000000000..2fe0d27fd Binary files /dev/null and b/content/utilization/hostservice_new.png differ diff --git a/content/utilization/iac.png b/content/utilization/iac.png new file mode 100644 index 000000000..be724f5f5 Binary files /dev/null and b/content/utilization/iac.png differ diff --git a/content/utilization/ict.png b/content/utilization/ict.png new file mode 100644 index 000000000..02fc218e3 Binary files /dev/null and b/content/utilization/ict.png differ diff --git a/content/utilization/ict_logo.png b/content/utilization/ict_logo.png new file mode 100644 index 000000000..fde19dba2 Binary files /dev/null and b/content/utilization/ict_logo.png differ diff --git a/content/utilization/index.md b/content/utilization/index.md new file mode 100644 index 000000000..511e8f88b --- /dev/null +++ b/content/utilization/index.md @@ -0,0 +1,206 @@ +--- +title: "Utilization" +template: "page.html" +insert_anchor_links: "left" +--- + + + + +
+ +{% row(style="header") %} + +![Image](header_ecosystem.png) + +||| + +## **Utilization & Ecosystem** + +ThreeFold’s decentralized autonomous cloud is in its third generation and ready to go commercial. It will empower many projects and digital experiences as we grow. + +{% end %} + + + + + + +{% row(style="reverse margin") %} + +## **Community Utilization** + +ThreeFold has developed extensive technology and tools for developers and system administrators. ThreeFold is designed for compatibility. Grid users are provided with familiar ways of deploying and managing resources. From decentralized cloud computing and blockchain integration to overseeing infrastructures and optimizing performance, there is a breadth of options for smooth and efficient operation. + +
+ + + + +||| + +![Image](utilization_community.png#mx-auto) + +{% end %} + + + + + + +{% row( style="center between mtop") %} + +### Core Partners +## **Building with ThreeFold in 2024** + +
+ +Meet the projects with whom we are working closely this year to drive utilization on top of the ThreeFold Grid. Each of these projects alone has the potential to use up all of ThreeFold's existing capacity – and the team is preparing methods for the grid to scale quickly. + +{% end %} + + +{% row( style="centerItem mtop") %} + +
+ +
+ +[![Image](social_logo.png#icon#mx-auto)](https://www.social.network/en) + +
+ +
+ +#### Scaling Bitcoin + + +
+ +Bitcoin is the clear leader when it comes to the "future of money," but the network faces key challenges like scalability, reliability, and energy efficiency, the same as all blockchains. We have known the team behind Earth Staking's Social Network, launched February 2024, for some years now. We decided to come together to tackle these issues together. [Visit](https://www.social.network/en) + +
+ +
+ +||| + +
+ +
+ +[![Image](ourworld_logo.png#icon#mx-auto)](https://freezone.ourworld.tf/) + +
+ +
+ +#### A Sovereign Economic Zone + + +
+ +Imagine an entrepreneur, digital nomad, or any company can 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. In July 2023, Dr. Hussein Ali Mwinyi, President of Zanzibar, spoke at a summit hosted by ThreeFold to announce the OurWorld Digital Free Zone, which will do just that. In 2024, the free zone will come alive, with ThreeFold as the underlying infrastructure. [Visit](https://freezone.ourworld.tf/) + +
+ +
+ +{% end %} + + +{% row( style="centerItem") %} + +
+ +
+ +[![Image](ict_logo.png#icon#mx-auto)](https://www.ictc.go.tz/) + +
+ +
+ +#### A Sovereign Internet, By and For Tanzania + + +
+ +Most countries do not own their own Internets, they have cables to other richer countries, where the infrastructure resides. Because of this, they lose numerous benefits. In a world where data is becoming increasingly valuable, data stays outside of the country. Digital sovereignty is inexistent. And economic gains are lost. Together with the ICT Commission of Tanzania, we will create a sovereign cloud & Internet infrastructure, along with coding academies and innovation centers to empower a self-reliant digital ecosystem for Tanzania and East Africa. [Visit](https://www.ictc.go.tz/) + +
+ +
+ +||| + +
+ +
+ +[![Image](sikana_logo.png#icon#mx-auto)](https://www.sikana.tv/en) + +
+ +
+ +#### Education For All + + +
+ +Sikana has delivered over 400,000,000 lessons via free and practical educational videos and video programming but because of this incredible scale, they struggled massively to pay for hosting costs. Together with ThreeFold, Sikana will enable the creation of local content in local languages and on top of local infrastructure – empowering people and communities with knowledge and power. [Visit](https://www.sikana.tv/en) + +
+ +
+ +{% end %} + +{% row( style="centerItem") %} + +
+ +
+ +[![Image](veverse_logo.png#icon#mx-auto)](https://veverse.com/) + +
+
+ +#### Own Your Metaverse + + +
+ +We met the founder of VeVerse several years ago, who had the vision to democratize access to art globally through metaverse technology. Together we agreed that we would work to turn that vision into reality in a fair and just way. Now in 2024, we plan to bring VeVerse on top of the ThreeFold Grid. [Visit](https://veverse.com/) + +
+ +
+ +||| + +
+ +
+ +[![Image](vverse_logo.png#icon#mx-auto)](https://www.vverse.co/) + +
+
+ +#### Metaverse Meets Edge Cloud + + +
+ +VVerse (not to be confused with VeVerse) is probably one of the most capable metaverse technologies ever made. The ThreeFold Grid will be used to render in the cloud and use low-latency connection to stream VVerse's virtual environments with video-like guality. A tremendous amount of capacity is required in order to roll out this metaverse. [Visit](https://www.vverse.co/) + +
+ +
+{% end %} + + +
\ No newline at end of file diff --git a/content/utilization/mastodon.png b/content/utilization/mastodon.png new file mode 100644 index 000000000..e651484ca Binary files /dev/null and b/content/utilization/mastodon.png differ diff --git a/content/utilization/mastodon_new.png b/content/utilization/mastodon_new.png new file mode 100644 index 000000000..86fa3d094 Binary files /dev/null and b/content/utilization/mastodon_new.png differ diff --git a/content/utilization/open-source1.png b/content/utilization/open-source1.png new file mode 100644 index 000000000..7b78aa282 Binary files /dev/null and b/content/utilization/open-source1.png differ diff --git a/content/utilization/ourworld_logo.png b/content/utilization/ourworld_logo.png new file mode 100644 index 000000000..ef1aa66a3 Binary files /dev/null and b/content/utilization/ourworld_logo.png differ diff --git a/content/utilization/playground_new.png b/content/utilization/playground_new.png new file mode 100644 index 000000000..c915e6475 Binary files /dev/null and b/content/utilization/playground_new.png differ diff --git a/content/utilization/quantum.png b/content/utilization/quantum.png new file mode 100644 index 000000000..3730b0cda Binary files /dev/null and b/content/utilization/quantum.png differ diff --git a/content/utilization/sikana.png b/content/utilization/sikana.png new file mode 100644 index 000000000..d131caebe Binary files /dev/null and b/content/utilization/sikana.png differ diff --git a/content/utilization/sikana_logo.png b/content/utilization/sikana_logo.png new file mode 100644 index 000000000..216e66b95 Binary files /dev/null and b/content/utilization/sikana_logo.png differ diff --git a/content/utilization/social_logo.png b/content/utilization/social_logo.png new file mode 100644 index 000000000..a7d85a61e Binary files /dev/null and b/content/utilization/social_logo.png differ diff --git a/content/utilization/social_network.png b/content/utilization/social_network.png new file mode 100644 index 000000000..a71980dcc Binary files /dev/null and b/content/utilization/social_network.png differ diff --git a/content/utilization/support1.png b/content/utilization/support1.png new file mode 100644 index 000000000..b95d36c38 Binary files /dev/null and b/content/utilization/support1.png differ diff --git a/content/utilization/utilization_community.png b/content/utilization/utilization_community.png new file mode 100644 index 000000000..05a3bd918 Binary files /dev/null and b/content/utilization/utilization_community.png differ diff --git a/content/utilization/veverse.png b/content/utilization/veverse.png new file mode 100644 index 000000000..be6ec3ad1 Binary files /dev/null and b/content/utilization/veverse.png differ diff --git a/content/utilization/veverse_logo.png b/content/utilization/veverse_logo.png new file mode 100644 index 000000000..cf59fc640 Binary files /dev/null and b/content/utilization/veverse_logo.png differ diff --git a/content/utilization/vverse.png b/content/utilization/vverse.png new file mode 100644 index 000000000..b1fa28c91 Binary files /dev/null and b/content/utilization/vverse.png differ diff --git a/content/utilization/vverse_logo.png b/content/utilization/vverse_logo.png new file mode 100644 index 000000000..ff9d23c13 Binary files /dev/null and b/content/utilization/vverse_logo.png differ diff --git a/content/utilization/zonaris_new.png b/content/utilization/zonaris_new.png new file mode 100644 index 000000000..31a1a91f6 Binary files /dev/null and b/content/utilization/zonaris_new.png differ diff --git a/css/code.css b/css/code.css index 7d95a8e7f..60120a3a4 100644 --- a/css/code.css +++ b/css/code.css @@ -14,6 +14,10 @@ span.c { color: hsl(120, 100%, 20%); } +.active { + color: #2E83FF; +} + span.p, span.s1, span.s2, diff --git a/css/index.css b/css/index.css index bc70a8346..158cadc87 100644 --- a/css/index.css +++ b/css/index.css @@ -44,14 +44,25 @@ img[src*="#logo"] { margin: auto; } +img[src*="#icon"] { + width: 200px; + margin: auto; +} + +img[src*="#social"] { + width: 100px; + margin: auto; +} + + img[src*="#large"] { - width: 1000px; + width: 700px; margin: auto; } img[src*="#tft_img"] { width: 150px; - margin: 8px; + margin: auto; } img[src*="#absolute"] { @@ -59,6 +70,12 @@ img[src*="#absolute"] { left: 0; top: 0; } + +a img:hover{ + opacity: 0.5 !important; + cursor: pointer; +} + .footer-cust a{ color: #999; cursor: pointer; @@ -77,7 +94,10 @@ img[src*="#absolute"] { } h1 { - line-height: 4rem; + line-height: 3rem; +} +.blue{ + color:#2E83FF } .nav p > a { @@ -116,22 +136,25 @@ h1 { @layer components { h1 { - @apply text-3xl lg:text-7xl font-normal; + @apply text-4xl lg:text-6xl font-normal; + color: #2b2b2b; } h2 { - @apply text-3xl lg:text-6xl my-4 font-light leading-none; + @apply text-3xl lg:text-4xl my-4 font-normal leading-none; + color: #2b2b2b; } h2 strong { - @apply font-medium; - } - h3 { - @apply text-xl lg:text-4xl my-4 font-extralight leading-none; - } - h3 strong { @apply font-semibold; } + h3 { + @apply text-2xl lg:text-3xl my-4 font-extralight; + color: #2b2b2b; + } + h3 strong { + @apply font-normal; + } h4 { - @apply text-sm lg:text-2xl font-normal; + @apply text-xl lg:text-2xl font-normal; } h5 { @apply text-md my-1 tracking-widest text-zinc-500 font-semibold; @@ -141,6 +164,7 @@ h1 { } p { @apply text-lg; + color: #3d3d3d; } blockquote { @apply border-l-4 border-gray-400 mx-2 my-2 p-2; @@ -155,18 +179,32 @@ h1 { @apply inline-block lg:text-lg - lg:mr-5 + lg:mr-3 py-1 - my-3 - border-2 + my-4 + border + rounded shadow - border-black + border-gray-400 capitalize + bg-gray-200 } .my-header h4{ color:#9f9f9f; } + + h3 a{ + color:#2b2b2b; + + } + + h3 a:hover{ + color:#2E83FF; + + } + + .article h2{ font-size: 2.25rem; font-family: Lato,sans-serif!important; @@ -236,7 +274,6 @@ header { .nav_btn { margin: 0 !important; - padding: 0 !important; border: none !important; box-shadow: none !important; } @@ -447,6 +484,7 @@ header #menu button { lg:mr-5 my-3 shadow + bg-white border-black capitalize leading-6 diff --git a/hello.md b/hello.md deleted file mode 100644 index bc7774a7b..000000000 --- a/hello.md +++ /dev/null @@ -1 +0,0 @@ -hello world! \ No newline at end of file diff --git a/start.sh b/start.sh index 34af69b2a..4a8094af7 100755 --- a/start.sh +++ b/start.sh @@ -1,30 +1,9 @@ -set +ex -# Check if tailwindcss is already installed -if command -v tailwindcss &> /dev/null; then - echo "tailwindcss is already installed." -else - # checks OS and architecture for correct release - 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 - pushd /tmp - curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}" - chmod +x $ASSET - mv $ASSET /usr/local/bin/tailwindcss - popd +# builds if executable isn't foound +if [ ! -f "tailwindcss" ] +then + sh build.sh fi -source ./env.sh + # initialized and configures tailwind if not configured if [ ! -f "tailwind.config.js" ] then @@ -33,16 +12,14 @@ then fi # compiles tailwind css & launches locally -# rm -rf public static/css -# ./tailwindcss -i css/index.css -o ./static/css/index.css --watch -# zola serve & -# compiles tailwind css for prod & builds project -# ./tailwindcss -i css/index.css -o ./static/css/index.css --minify -# zola build -# # kills zola and tw bg processes on interrupt -# trap 'kill $(jobs -p); exit 1' INT -# wait rm -rf public static/css -tailwindcss -i css/index.css -o ./static/css/index.css --minify -zola build -o ~/Documents/web/$NAME/ -open ~/Documents/web/$NAME/index.html \ No newline at end of file +./tailwindcss -i css/index.css -o ./static/css/index.css --watch & zola serve & + +# compiles tailwind css for prod & builds project +./tailwindcss -i css/index.css -o ./static/css/index.css --minify +zola build + +# kills zola and tw bg processes on interrupt +trap 'kill $(jobs -p); exit 1' INT +wait + diff --git a/static/images/V3-08.png b/static/images/V3-08.png index 03db186c2..1a1e3a90c 100644 Binary files a/static/images/V3-08.png and b/static/images/V3-08.png differ diff --git a/static/images/V3-09.png b/static/images/V3-09.png index 41b4fa874..85f064ee7 100644 Binary files a/static/images/V3-09.png and b/static/images/V3-09.png differ diff --git a/static/images/V3-10.png b/static/images/V3-10.png index 972184dfd..0ba1ca015 100644 Binary files a/static/images/V3-10.png and b/static/images/V3-10.png differ diff --git a/static/images/V3-11.png b/static/images/V3-11.png index b828be364..9cf91a41a 100644 Binary files a/static/images/V3-11.png and b/static/images/V3-11.png differ diff --git a/static/images/V3.png b/static/images/V3.png index 361b64271..29bcb32c1 100644 Binary files a/static/images/V3.png and b/static/images/V3.png differ diff --git a/static/images/bg_checker.jpg b/static/images/bg_checker.jpg new file mode 100644 index 000000000..a8764151d Binary files /dev/null and b/static/images/bg_checker.jpg differ diff --git a/static/images/bg_new.jpg b/static/images/bg_new.jpg new file mode 100644 index 000000000..28caafe10 Binary files /dev/null and b/static/images/bg_new.jpg differ diff --git a/static/images/checkerboard1.jpg b/static/images/checkerboard1.jpg new file mode 100644 index 000000000..264abf5b7 Binary files /dev/null and b/static/images/checkerboard1.jpg differ diff --git a/static/images/checkerboard2.jpg b/static/images/checkerboard2.jpg new file mode 100644 index 000000000..9cff677a2 Binary files /dev/null and b/static/images/checkerboard2.jpg differ diff --git a/static/images/gettft_white.png b/static/images/gettft_white.png index fdd42b0df..12376d48c 100644 Binary files a/static/images/gettft_white.png and b/static/images/gettft_white.png differ diff --git a/static/images/header-R03-8.png b/static/images/header-R03-8.png new file mode 100644 index 000000000..1ed98f639 Binary files /dev/null and b/static/images/header-R03-8.png differ diff --git a/static/images/header_bg.jpg b/static/images/header_bg.jpg new file mode 100644 index 000000000..f8c2c62ed Binary files /dev/null and b/static/images/header_bg.jpg differ diff --git a/static/images/header_new_b.png b/static/images/header_new_b.png new file mode 100644 index 000000000..dd4c5a77b Binary files /dev/null and b/static/images/header_new_b.png differ diff --git a/static/images/togethericon.png b/static/images/togethericon.png new file mode 100644 index 000000000..2d337ecb8 Binary files /dev/null and b/static/images/togethericon.png differ diff --git a/static/js/custom.js b/static/js/custom.js index 3ce846cf3..7e5d053fe 100644 --- a/static/js/custom.js +++ b/static/js/custom.js @@ -141,6 +141,9 @@ window.onload = function () { handleClick(button); }); }); + + document.getElementById("filter-btn").addEventListener('click', toggleFilter); + document.getElementById("mobile-learn-btn").addEventListener('click', toggleMenu); }; function openInNewTab(url) { @@ -163,7 +166,7 @@ const urls = [ "https://gridproxy.grid.tf/stats?status=up", "https://gridproxy.dev.grid.tf/stats?status=up", "https://gridproxy.test.grid.tf/stats?status=up", - "https://gridproxy.grid.tf/stats?status=standby", + "https://gridproxy.bknd1.ninja.tf/stats?status=standby", // will change to mainnet when release "https://gridproxy.dev.grid.tf/stats?status=standby", "https://gridproxy.test.grid.tf/stats?status=standby", ]; diff --git a/templates/_default/base.html b/templates/_default/base.html index ac65b6023..b51872dea 100644 --- a/templates/_default/base.html +++ b/templates/_default/base.html @@ -42,7 +42,7 @@ {% include "partials/header.html" %} -
+
{% block content %}{% endblock %}
diff --git a/templates/layouts/blog.html b/templates/layouts/blog.html index 4d4615a49..d9b237f2b 100644 --- a/templates/layouts/blog.html +++ b/templates/layouts/blog.html @@ -24,7 +24,7 @@ and a side nav for category and featured post navigation {% include "partials/featuredBlog.html" %} -
+
{% include "partials/blogPosts.html" %} {% include "partials/blogSidebar.html" %}
diff --git a/templates/layouts/newsroom.html b/templates/layouts/newsroom.html index b243a299d..52086d4b4 100644 --- a/templates/layouts/newsroom.html +++ b/templates/layouts/newsroom.html @@ -24,7 +24,7 @@ and a side nav for category and featured post navigation {% include "partials/featuredNews.html" %} -
+
{% include "partials/newsPosts.html" %} {% include "partials/newsSidebar.html" %}
diff --git a/templates/memberships/single.html b/templates/memberships/single.html index e357e75fb..359c1f9b9 100644 --- a/templates/memberships/single.html +++ b/templates/memberships/single.html @@ -13,13 +13,13 @@ {% set category = "All" %} {% endif %} -
+
{% include "partials/filter_bar.html" %} -
+
-

+

{{category | replace(from='-', to=' ' ) | title}} -

+
{{ paginator.total_pages ~ " People"}}
@@ -28,7 +28,7 @@
-
+
{%- for page in paginator.pages %} {% include "partials/person_card.html" %} {%- endfor %} diff --git a/templates/partials/blogPosts.html b/templates/partials/blogPosts.html index 715d454b2..1283a3b8a 100644 --- a/templates/partials/blogPosts.html +++ b/templates/partials/blogPosts.html @@ -7,7 +7,7 @@ {% set path_array = current_path | split(pat="/") %} {% set taxonomy = path_array[1] %} {% set category = path_array[2] %} - The Latest from ThreeFold + ThreeFold stories and project info {% if taxonomy == "categories" %} - {{category | replace(from='-', to=' ' ) | title}} {% endif %} diff --git a/templates/partials/filter_bar.html b/templates/partials/filter_bar.html index 04e549cc0..7f09d59b8 100644 --- a/templates/partials/filter_bar.html +++ b/templates/partials/filter_bar.html @@ -7,11 +7,11 @@ -
-
+
+
- + Filter:
@@ -20,13 +20,13 @@
  • -
  • ") %} - {% set header_label = header_arr[0] %} - {% if " - {{link_label}} + {% if not loop.first %} + {% set header_arr = header_item | split(pat="") %} + {% set header_label = header_arr[0] %} + {% if ' + {{link_label}} + + {% endif %} + {% elif current == current_url %} + + {{link_label}} - {% endif %} {% else %} - - {{link_label}} - + + {{link_label}} + {% endif %} - {% else %} -
    - {% set button_id = header_label ~ "-menu-btn" | slugify %} - -
    - {% endif %} - {% endif %} + {% else %} +
    + {% set button_id = header_label ~ "-menu-btn" | slugify %} + +
    + + {% endif %} + {% endif %} {% endfor %} @@ -102,7 +108,7 @@
+
\ No newline at end of file diff --git a/templates/partials/intro.html b/templates/partials/intro.html index 02d90b824..a1def33f0 100644 --- a/templates/partials/intro.html +++ b/templates/partials/intro.html @@ -1,9 +1,9 @@ {% block content %} -
-

{{ section.title }}

+
+

{{ section.title }}

{{ section.description }}

-
+{#
#} {% endblock content %} diff --git a/templates/partials/memberships.html b/templates/partials/memberships.html index 9e9c074df..c87619196 100644 --- a/templates/partials/memberships.html +++ b/templates/partials/memberships.html @@ -11,11 +11,11 @@ {% set category = "All" %} {% endif %} -
+
{% include "partials/filter_bar.html" %}
-

+

{{category | replace(from='-', to=' ' ) | title}}

test @@ -27,7 +27,7 @@
-
+
{%- for page in paginator.pages %} {% include "partials/person_card.html" %} {%- endfor %} diff --git a/templates/partials/newsPosts.html b/templates/partials/newsPosts.html index b018916b9..42ba162b5 100644 --- a/templates/partials/newsPosts.html +++ b/templates/partials/newsPosts.html @@ -7,7 +7,7 @@ {% set path_array = current_path | split(pat="/") %} {% set taxonomy = path_array[1] %} {% set category = path_array[2] %} - The Latest from ThreeFold + News and updates from the ecosystem {% if taxonomy == "news-category" %} - {{category | replace(from='-', to=' ' ) | title}} {% endif %} diff --git a/templates/partials/person_card.html b/templates/partials/person_card.html index 2204df7ee..f5e37ccc1 100644 --- a/templates/partials/person_card.html +++ b/templates/partials/person_card.html @@ -1,17 +1,17 @@
{% set url = get_url(path='/' ~ page.relative_path | replace(from='_', to='-') | replace(from='index.md', to=page.extra.imgPath)) %} - {{page.title ~ ' Picture'}} -
-

{{page.title}}

-
diff --git a/templates/people/list.html b/templates/people/list.html index 9a6398467..3aab8d6f8 100644 --- a/templates/people/list.html +++ b/templates/people/list.html @@ -2,17 +2,17 @@ {% block content %} {%- set section = get_section(path="people/_index.md") %} {% include "partials/intro.html" %} -
+
{% include "partials/filter_bar.html" %}
-

+ {#

{% set path_array = current_path | split(pat="/") %} {% set taxonomy = path_array[1] %} {% set category = path_array[2] %} {{category | replace(from='-', to=' ' ) | title}} -

+ #}
-
+
{% for person in section.pages %} {% set page_path = person.path ~ 'index.md' | replace(from='-', to='_') | trim_start_matches(pat="/") %} {% set people = get_section(path="people/_index.md") %} diff --git a/templates/people/single.html b/templates/people/single.html index de4c30535..6ae30fc2c 100644 --- a/templates/people/single.html +++ b/templates/people/single.html @@ -11,13 +11,13 @@
- +
-
-

+
+

{{page.title}} -

+

{% include "partials/socialLinks.html" %}
@@ -40,7 +40,7 @@
{% if page.taxonomies.memberships %} {% for tag in page.taxonomies.memberships %} - + {{tag}} {% endfor %} diff --git a/templates/shortcodes/grid_stats.html b/templates/shortcodes/grid_stats.html index 9f35673a8..539583cd9 100644 --- a/templates/shortcodes/grid_stats.html +++ b/templates/shortcodes/grid_stats.html @@ -55,7 +55,7 @@ diff --git a/templates/shortcodes/grid_stats_expand.html b/templates/shortcodes/grid_stats_expand.html new file mode 100644 index 000000000..127c2b1d3 --- /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 %} +
+
+
+ {{body | markdown | safe }} + +
+ + + +
+ +
+ {{ capacity | round(precision=2) }}PB + capacity +
+
+ + + +
+ +
+ {{ nodes }} + nodes +
+
+ + + + +
+ +
+ {{ countries }} + countries +
+
+ + +
+ +
+ {{ cores | num_format }} + cores +
+
+ + +
+ + + +
+
+
+{% 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 000000000..da2fea580 --- /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/jobs.html b/templates/shortcodes/jobs.html index 1eeb0be65..17a168d84 100644 --- a/templates/shortcodes/jobs.html +++ b/templates/shortcodes/jobs.html @@ -38,7 +38,6 @@ bg-white text-lg learn-button - hover:bg-gray-400 lg:px-12 px-6 py-1 @@ -77,7 +76,6 @@ bg-white text-lg learn-button - hover:bg-gray-400 lg:px-12 px-6 py-1 @@ -116,7 +114,6 @@ bg-white text-lg learn-button - hover:bg-gray-400 lg:px-12 px-6 py-1 @@ -155,7 +152,6 @@ bg-white text-lg learn-button - hover:bg-gray-400 lg:px-12 px-6 py-1 @@ -194,7 +190,6 @@ bg-white text-lg learn-button - hover:bg-gray-400 lg:px-12 px-6 py-1 diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html index a1e3b08fd..91604c8d7 100644 --- a/templates/shortcodes/row.html +++ b/templates/shortcodes/row.html @@ -51,7 +51,7 @@ Parameters: {% set row_class = row_class ~ " lg:items-center" %} {% endif %} -{% set col_class = "flex-1 mb-6 md:mb-0 md:mx-2" %} +{% set col_class = "flex-1 mb-6 md:mb-0 px-4 md:px-12" %} {% set row_id = '' %} {% if id %} @@ -62,6 +62,16 @@ Parameters: {% 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 ~ " flex-1 m-4 lg:m-0" %} @@ -71,25 +81,25 @@ Parameters: {% set row_class = row_class ~ " text-white" %} {% endif %} - - - {% if "reverse" in style %} - {% set row_class = "flex flex-col-reverse md:flex-row items-center" %} - {% endif %} - {% if "margin" in style %} - {% set row_class = row_class ~ " lg:py-28 py-10" %} + {% set row_class = row_class ~ " lg:py-24 py-10" %} {% set col_class = col_class ~ " flex-1 m-4 lg:m-0" %} {% endif %} + + {% if "header" in style %} + {% set row_class = row_class ~ " h-auto md:h-screen mt-4 lg:mt-0" %} + {% set col_class = col_class ~ " m-4 lg:m-0" %} + {% endif %} + {% if "mtop" in style %} - {% set row_class = row_class ~ " lg:pt-28 pt-10" %} + {% set row_class = row_class ~ " lg:pt-24 pt-2" %} {% set col_class = col_class ~ " flex-1 m-4 lg:m-0" %} {% endif %} {% if "mbottom" in style %} - {% set row_class = row_class ~ " lg:pb-28" %} + {% set row_class = row_class ~ " lg:pb-24" %} {% set col_class = col_class ~ " flex-1 m-4 lg:m-0" %} {% endif %} @@ -101,14 +111,14 @@ Parameters: {% if "between" in style %} - {% set row_class = row_class ~ " lg:max-w-6xl mx-auto" %} + {% 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-5xl" %} + {% set row_class = row_class ~ " lg:max-w-4xl mx-auto" %} {% elif "moderate" in style %} {% set row_class = row_class ~ " lg:m-20" %} {% endif %} @@ -124,8 +134,9 @@ Parameters: {% set styles = "" %} {% if bgPath %} - {% set styles = "background: url('" ~ bgPath ~ "'); background-size: cover" %} - {% set row_class = row_class ~ "w-screen -mx-8 sm:-mx-12 md:-mx-16 lg:-mx-20" %} + {% 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" %} @@ -135,6 +146,13 @@ Parameters: {% 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='"') %} diff --git a/templates/shortcodes/tft_links.html b/templates/shortcodes/tft_links.html index 20c17fb28..2d6c2d8c9 100644 --- a/templates/shortcodes/tft_links.html +++ b/templates/shortcodes/tft_links.html @@ -6,7 +6,7 @@ gettft {% set link = page.permalink ~ "stellar_logo.png"%} stellar