Initial commit
46
.github/workflows/tf_update_dev.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
name: www2.threefold_io
|
||||
on:
|
||||
push:
|
||||
branches: [ development ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: Deploy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: pushing latest change on www2.threefold.io
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: dev.threefold.io
|
||||
username: webuser
|
||||
key: ${{ secrets.TF_SECRET }}
|
||||
port: 34022
|
||||
script: |
|
||||
cd websites/www2/www_threefold_io/
|
||||
git log -1
|
||||
git fetch
|
||||
git reset --hard origin/development
|
||||
sed -i "s/https:\/\/www.threefold.io/https:\/\/dev.threefold.io/g" config.toml
|
||||
./build.sh
|
||||
|
||||
wait:
|
||||
needs: deploy
|
||||
name: Wait for Website Update
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Wait Period
|
||||
id: wait-deploy
|
||||
run: |
|
||||
echo "Sleeping for 30"
|
||||
sleep 30
|
||||
|
||||
checklinks:
|
||||
needs: wait
|
||||
name: Check for Broken Links
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check for Broken Links
|
||||
id: link-report
|
||||
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest
|
||||
with:
|
||||
args: 'https://www2.threefold.io -w 404'
|
46
.github/workflows/tf_update_prod.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
name: www.threefold_io
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: Deploy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: pushing latest change on www.threefold.io
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: www.threefold.io
|
||||
username: root
|
||||
key: ${{ secrets.TF_SECRET }}
|
||||
port: 22
|
||||
script: |
|
||||
cd /opt/www_threefold_io/
|
||||
git log -1
|
||||
git fetch
|
||||
git reset --hard origin/master
|
||||
sed -i "s/https:\/\/dev.threefold.io/https:\/\/www.threefold.io/g" config.toml
|
||||
./build.sh
|
||||
|
||||
wait:
|
||||
needs: deploy
|
||||
name: Wait for Website Update
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Wait Period
|
||||
id: wait-deploy
|
||||
run: |
|
||||
echo "Sleeping for 30"
|
||||
sleep 30
|
||||
|
||||
checklinks:
|
||||
needs: wait
|
||||
name: Check for Broken Links
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check for Broken Links
|
||||
id: link-report
|
||||
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest
|
||||
with:
|
||||
args: 'https://www.threefold.io -w 404'
|
46
.github/workflows/update_dev2.yml
vendored
Normal file
@ -0,0 +1,46 @@
|
||||
name: www3.threefold_io
|
||||
on:
|
||||
push:
|
||||
branches: [ development_sasha ]
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
name: Deploy
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: pushing latest change on www3.threefold.io
|
||||
uses: appleboy/ssh-action@master
|
||||
with:
|
||||
host: www3.threefold.io
|
||||
username: webuser
|
||||
key: ${{ secrets.TF_SECRET }}
|
||||
port: 34022
|
||||
script: |
|
||||
cd websites/tmp/www_threefold_io/
|
||||
git log -1
|
||||
git restore .
|
||||
git pull
|
||||
sed -i "s/https:\/\/dev.threefold.io/https:\/\/dev2.threefold.io/g" config.toml
|
||||
bash build.sh
|
||||
|
||||
wait:
|
||||
needs: deploy
|
||||
name: Wait for Website Update
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Wait Period
|
||||
id: wait-deploy
|
||||
run: |
|
||||
echo "Sleeping for 30"
|
||||
sleep 30
|
||||
|
||||
checklinks:
|
||||
needs: wait
|
||||
name: Check for Broken Links
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check for Broken Links
|
||||
id: link-report
|
||||
uses: docker://ghcr.io/threefoldfoundation/website-link-checker:latest
|
||||
with:
|
||||
args: 'https://www3.threefold.io -w 404'
|
46
.github/workflows/update_www3.yml
vendored
Normal file
@ -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'
|
35
.gitignore
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
examples/builder
|
||||
examples/docker
|
||||
examples/publisher
|
||||
examples/texttools
|
||||
examples/gittools
|
||||
examples/tmux
|
||||
examples/vredis2
|
||||
*dSYM/
|
||||
publisher/publish
|
||||
install_publisher
|
||||
.vmodules/
|
||||
vex_webserver
|
||||
publishtools/publishtools
|
||||
.vscode
|
||||
*.log
|
||||
!.env.example
|
||||
.cache
|
||||
.DS_Store
|
||||
src/.temp
|
||||
content/person
|
||||
content/project
|
||||
node_modules
|
||||
!.env.example
|
||||
.env
|
||||
.env.*
|
||||
yarn.lock
|
||||
.installed
|
||||
package-lock.json
|
||||
dist
|
||||
.temp
|
||||
run*
|
||||
install*
|
||||
public
|
||||
static/css
|
||||
tailwindcss
|
4
.gitmodules
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
[submodule "threefold_data"]
|
||||
path = threefold_data
|
||||
url = https://github.com/threefoldfoundation/threefold_data.git
|
||||
ignore = dirty
|
7
Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
SHELL := /bin/bash
|
||||
|
||||
build:
|
||||
. ./build.sh
|
||||
|
||||
start:
|
||||
. ./start.sh
|
89
README.md
Normal file
@ -0,0 +1,89 @@
|
||||
# Welcome to Welcome to ThreeFold Website RepositoryWebsite Repository
|
||||
|
||||

|
||||
|
||||
## About
|
||||
|
||||
The official website of ThreeFold Foundation. <br>
|
||||
|
||||
Production: [www.threefold.io](https://www.threefold.io) (master branch)
|
||||
|
||||
Staging: www2.threefold.io (development branch)
|
||||
|
||||
Last Updated: September 2024
|
||||
|
||||
## Administrators
|
||||
|
||||
[ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin)
|
||||
|
||||
## Contribution Procedure
|
||||
|
||||

|
||||
|
||||
It is highly important to follow this procedure to contribute to the website content. <br>
|
||||
__WARNING__: DO NOT commit straight into the __master__ / __development__ branches.
|
||||
|
||||
1. Feel free to [create a new issue](https://github.com/threefoldfoundation/www_threefold_io/issues/new) to report an error on the website, or if you have any suggestions on website improvements.
|
||||
|
||||
2. Make your own branch from the __development__ branch. By creating a new branch from __development__ you will be provided with the latest copy of the live website content at the staging site, www2.threefold.io.
|
||||
|
||||
3. Add your edits into your own branch via code editor locally, and push your local changes online. WARNING: DO NOT add your edits straight into __master__ / __development__ branch.
|
||||
|
||||
5. Create a PR to merge your own branch into **development**, and assign one of [ThreeFold's Web Admins](https://github.com/orgs/threefoldfoundation/teams/team_web_admin) on your PR as reviewer, or assign @sasha-astiadi as reviewer.
|
||||
|
||||
7. When PR is approved, you can see your changes on staging env on www2.threefold.io (development branch)
|
||||
|
||||
8. Admin will then create a PR to merge **development** into into **master** (production branch)
|
||||
|
||||
10. When PR is approved, you can see your changes live on production www.threefold.io (master branch).
|
||||
|
||||
## Development
|
||||
|
||||
While contributing content to this site doesn't strictly require setting up a development environment, it will allow you to preview your changes and that's super handy.
|
||||
|
||||
To do that, the following prerequisites are needed:
|
||||
|
||||
* macOS or Linux
|
||||
* [Zola](https://www.getzola.org/documentation/getting-started/installation/)
|
||||
|
||||
Then clone the repository recursively to also pull in contents of `threefold_data`:
|
||||
|
||||
```bash
|
||||
#if you don't have hero installed yet, run the following commands
|
||||
curl https://raw.githubusercontent.com/freeflowuniverse/crystallib/development/scripts/install_hero.sh > /tmp/hero_install.sh
|
||||
bash /tmp/hero_install.sh
|
||||
|
||||
#install zola & tailwind
|
||||
hero installers -n zola
|
||||
|
||||
#get this repo be careful --pr will remove all local changes (pull reset), -b development means we are on the development branch
|
||||
hero git pull -u https://github.com/threefoldfoundation/www_threefold_io -b development -pr
|
||||
|
||||
#cd to the directory
|
||||
eval $(hero git cd -u https://github.com/threefoldfoundation/www_threefold_io)
|
||||
|
||||
bash build.sh
|
||||
|
||||
```
|
||||
|
||||
Finally, start a browsable local copy of the site that will respond to changes in the source files like this:
|
||||
|
||||
```
|
||||
zola serve
|
||||
```
|
||||
|
||||
Zola will display a local address such as `http://127.0.0.1:1111` which you can click or copy and paste into your browser to view the site on your own machine.
|
||||
|
||||
That's it—have fun!
|
||||
|
||||
|
||||
# Guidelines for Editing Blog, News, and Team Images
|
||||
|
||||
### General:
|
||||
Ensure all images are optimized to be less than 1MB for faster loading and better performance.
|
||||
|
||||
### Blog & News:
|
||||
Use a resolution of **1200 x 600** pixels or maintain the same aspect ratio to fit seamlessly with placeholders.
|
||||
|
||||
### Team:
|
||||
Keep images square with a resolution of **640 x 640** pixels for consistent appearance.
|
69
_archive/team.html
Normal file
@ -0,0 +1,69 @@
|
||||
<div class="bg-transparent relative isolate overflow-hidden py-12">
|
||||
<div class="mx-auto max-w-7xl px-6 lg:px-8">
|
||||
<div class="mx-auto max-w-2xl lg:max-w-none">
|
||||
<div class="text-center">
|
||||
<h2 class="fade-in text-balance text-4xl font-normal tracking-tight text-white lg:text-5xl">The Team Behind ThreeFold</h2>
|
||||
<p class="mx-auto mt-4 max-w-3xl text-pretty lg:text-2xl text-xl font-medium text-gray-200 fade-in">Founded by Internet Pioneers 1.0</p>
|
||||
<p class="mx-auto mb-10 mt-6 max-w-4xl text-pretty lg:text-xl text-lg font-light text-gray-200 fade-in">We are a dedicated group committed to advancing a new digital era. Some of us have been working on Internet technology since the early days, when it was a decentralized network. We aim to help bring that vision to life once more. Beyond those below, we have more than 50 engineers, developers, and other team members supporting the project.</p>
|
||||
</div>
|
||||
|
||||
<div class="mt-12 grid grid-cols-1 gap-x-4 lg:gap-y-10 lg:gap-x-8 lg:grid-cols-4 gap-y-0">
|
||||
|
||||
<!-- Team Member -->
|
||||
<div class="group relative fade-in mb-8">
|
||||
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
|
||||
<img src="/images/kds.png" alt="kristof_de_spiegeleer" class="size-full object-cover">
|
||||
</div>
|
||||
<h3 class="mt-4 text-xl font-semibold text-white">
|
||||
Kristof de Spiegeleer
|
||||
</h3>
|
||||
<p class="text-md text-gray-300">Co-founder & CEO</p>
|
||||
<p class="mt-1 text-sm font-light text-white">
|
||||
Serial entrepreneur with 30 years of experience in Internet infrastructure and cloud technology. Passionate about tech for good. +600m $ exits.</p>
|
||||
</div>
|
||||
|
||||
<!-- Team Member -->
|
||||
<div class="group relative fade-in mb-8">
|
||||
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
|
||||
<img src="/images/adnan.png" alt="adnan_fatayerji" class="size-full object-cover">
|
||||
</div>
|
||||
<h3 class="mt-4 text-xl font-semibold text-white">
|
||||
Adnan Fatayerji
|
||||
</h3>
|
||||
<p class="text-md text-gray-300">Co-founder</p>
|
||||
<p class="mt-1 text-sm font-light text-white">
|
||||
Tech entrepreneur with multiple exits. Based in Dubai for 20 years. Head of Partnerships and Business Development..</p>
|
||||
</div>
|
||||
|
||||
<!-- Team Member -->
|
||||
<div class="group relative fade-in mb-8">
|
||||
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
|
||||
<img src="/images/jan.png" alt="jan_de_landtsheer" class="size-full object-cover">
|
||||
</div>
|
||||
<h3 class="mt-4 text-xl font-semibold text-white">
|
||||
Jan De Landtsheer
|
||||
</h3>
|
||||
<p class="text-md text-gray-300">Co-founder & CTO</p>
|
||||
<p class="mt-1 text-sm font-light text-white">
|
||||
Engineer with 40+ years of experience in deep tech, networking, cloud and storage.</p>
|
||||
</div>
|
||||
|
||||
<!-- Team Member -->
|
||||
<div class="group relative fade-in mb-8">
|
||||
<div class="h-56 w-full overflow-hidden rounded-md bg-gray-200 group-hover:opacity-75 lg:h-72 xl:h-80">
|
||||
<img src="/images/flo.png" alt="florian_fournier" class="size-full object-cover">
|
||||
</div>
|
||||
<h3 class="mt-4 text-xl font-semibold text-white">
|
||||
Florian Fournier
|
||||
</h3>
|
||||
<p class="text-md text-gray-300">Co-founder & CMO</p>
|
||||
<p class="mt-1 text-sm font-light text-white">
|
||||
Ex Apple marketing director, serial entrepreneur living between Africa and Latin America.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-8 flex items-center justify-center gap-x-6 fade-in">
|
||||
<a href="/people" class="fade-in rounded-2xl bg-white px-4 py-2.5 text-sm font-semibold text-black shadow-sm hover:bg-gray-200 hover:text-gray-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-offset-2">Meet the Team</a>
|
||||
</div>
|
||||
</div>
|
||||
|
46
build.sh
Executable file
@ -0,0 +1,46 @@
|
||||
echo "Starting build..."
|
||||
|
||||
SOURCE=${BASH_SOURCE[0]}
|
||||
DIR_OF_THIS_SCRIPT="$( dirname "$SOURCE" )"
|
||||
ABS_DIR_OF_SCRIPT="$( realpath $DIR_OF_THIS_SCRIPT )"
|
||||
|
||||
# TODO: Check if current version is latest to avoid redundant installation
|
||||
if [[ -f "tailwindcss" ]]
|
||||
then
|
||||
rm tailwindcss
|
||||
fi
|
||||
|
||||
# checks os and architecture for correct release
|
||||
# https://stackoverflow.com/a/8597411
|
||||
echo "Installing & building tailwind..."
|
||||
ASSET="tailwindcss"
|
||||
|
||||
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
||||
ASSET="$ASSET-linux"
|
||||
elif [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
ASSET="$ASSET-macos"
|
||||
fi
|
||||
if [[ "$(uname -m)" == "x86_64"* ]]; then
|
||||
ASSET="$ASSET-x64"
|
||||
elif [[ "$(uname -m)" == "arm64"* ]]; then
|
||||
ASSET="$ASSET-arm64"
|
||||
fi
|
||||
|
||||
curl -sLO "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/${ASSET}"
|
||||
chmod +x $ASSET
|
||||
mv $ASSET tailwindcss
|
||||
|
||||
|
||||
# initialized and configures tailwind if not configured
|
||||
echo "Initializing tailwind..."
|
||||
if [[ ! -f "tailwind.config.js" ]]
|
||||
then
|
||||
./tailwindcss init
|
||||
sed -i '' "s| content: \\[\\],| content: \\['./templates/**/*.html'\\],|g" tailwind.config.js
|
||||
fi
|
||||
|
||||
# compiles tailwind css for prod & builds project
|
||||
echo "Compiling tailwindcss and building zola project..."
|
||||
rm -rf public static/css
|
||||
./tailwindcss -i css/index.css -o ./static/css/index.css --minify
|
||||
zola --root $ABS_DIR_OF_SCRIPT build
|
100
config.toml
Normal file
@ -0,0 +1,100 @@
|
||||
# The URL the site will be built for
|
||||
base_url = "https://dev.threefold.io"
|
||||
# Change this to your own URL! Please note this variable **must** be uncommented .
|
||||
|
||||
title = "ThreeFold"
|
||||
description = "Our global digital backbone"
|
||||
|
||||
# When set to "true", a feed is automatically generated.
|
||||
generate_feed = true
|
||||
|
||||
# The filename to use for the feed. Used as the template filename, too.
|
||||
# Defaults to "atom.xml", which has a built-in template that renders an Atom 1.0 feed.
|
||||
# There is also a built-in template "rss.xml" that renders an RSS 2.0 feed.
|
||||
feed_filename = "atom.xml"
|
||||
|
||||
# The number of articles to include in the feed. All items are included if
|
||||
# this limit is not set (the default).
|
||||
# feed_limit = 10
|
||||
|
||||
# Whether to automatically compile all Sass files in the sass directory
|
||||
compile_sass = false
|
||||
|
||||
# When set to "true", the generated HTML files are minified.
|
||||
# minify_html = true
|
||||
# I'm keeping off for now -- buggy -- 2021-02-05 (@keats says it'll be fixed 0.14.0)
|
||||
|
||||
# Whether to build a search index to be used later on by a JavaScript library
|
||||
build_search_index = false
|
||||
|
||||
[markdown]
|
||||
# Whether to do syntax highlighting
|
||||
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
|
||||
highlight_code = true
|
||||
highlight_theme = "visual-studio-dark"
|
||||
|
||||
# When set to "true", emoji aliases translated to their corresponding
|
||||
# Unicode emoji equivalent in the rendered Markdown files. (e.g.: :smile: => 😄)
|
||||
render_emoji = false
|
||||
|
||||
# Whether external links are to be opened in a new tab
|
||||
# If this is true, a `rel="noopener"` will always automatically be added for security reasons
|
||||
# external_links_target_blank = false
|
||||
|
||||
# Whether to set rel="nofollow" for all external links
|
||||
external_links_no_follow = true
|
||||
|
||||
# Whether to set rel="noreferrer" for all external links
|
||||
external_links_no_referrer = true
|
||||
|
||||
# Whether smart punctuation is enabled (changing quotes, dashes, dots in their typographic form)
|
||||
# For example, `...` into `…`, `"quote"` into `“curly”` etc
|
||||
smart_punctuation = true
|
||||
|
||||
[build]
|
||||
not_found = "404.md"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "categories"
|
||||
feed = true
|
||||
paginate_by = 6
|
||||
paginate_path = "blog-posts"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "partners-category"
|
||||
feed = true
|
||||
paginate_by = 6
|
||||
paginate_path = "partner-card"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "news-category"
|
||||
feed = true
|
||||
paginate_by = 6
|
||||
paginate_path = "news-card"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "roles"
|
||||
feed = true
|
||||
paginate_by = 2
|
||||
paginate_path = "join-us"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "tags"
|
||||
feed = true
|
||||
paginate_by = 9
|
||||
paginate_path = "tags"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "people"
|
||||
feed = false
|
||||
paginate_by = 9
|
||||
paginate_path = "people"
|
||||
|
||||
[[taxonomies]]
|
||||
name = "memberships"
|
||||
feed = false
|
||||
paginate_by = 8
|
||||
paginate_path = "people/memberships"
|
||||
|
||||
[extra]
|
||||
# Put all your custom variables here
|
8
content/404.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
title: "404"
|
||||
description: ""
|
||||
insert_anchor_links: "left"
|
||||
template: "404.html"
|
||||
|
||||
---
|
||||
|
204
content/_index.md
Normal file
@ -0,0 +1,204 @@
|
||||
---
|
||||
title: "ThreeFold"
|
||||
description: "TF offers a secure, sovereign infrastructure layer for Web4, delivering unparalleled scalability, incorruptible and permanent data storage, AI and Web2/Web3/Edge compatibility, and 100% uptime for a resilient digital future." # quotation marks to allow colons where used
|
||||
date: 2018-09-14T21:00:00-05:00
|
||||
updated: 2021-02-20T14:40:00-06:00
|
||||
draft: false
|
||||
extra:
|
||||
author: ThreeFold
|
||||
imgPath: home/tf.png
|
||||
---
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
{% row(style="center") %}
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||

|
||||
|
||||
<br/>
|
||||
|
||||
## The (Re)Birth of **the Internet.**
|
||||
|
||||
ThreeFold is a peer-to-peer open-source Internet platform that connects users directly with <br> local Internet capacity provided by farmers. No intermediaries such as centralized servers.
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center narrow") %}
|
||||
|
||||
<button>[Build](/build)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[Farm](/farm)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[Main Chat](https://t.me/threefold)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[Get TFT](https://www.manual.grid.tf/documentation/threefold_token/buy_sell_tft/tft_lobstr/tft_lobstr_short_guide.html)</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 2 (Map) -->
|
||||
|
||||
|
||||
{% grid_stats() %}
|
||||
|
||||
### The ThreeFold Grid v3.7.0
|
||||
|
||||
## **Live and Operational**
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
<!-- section 3 (EXPAND) -->
|
||||
|
||||
{% row(style="center narrow") %}
|
||||
|
||||
## Together **We Build.**
|
||||
|
||||
The future is about decentralization, participation, and working together to achieve our goals. As a decentralized movement, we encourage the community to get involved. This new Internet can only succeed if we find ways to collaborate where we together pull this Internet concept forward. Below, please find some of the ways you can join us in building a better Internet.
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center narrow") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
### Farm Local Internet Capacity **and Earn TFT**
|
||||
|
||||
By connecting hardware at your home or office – or anywhere you'd like – you provide Internet capacity for the people around you and earn a new digital currency, TFT.
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center narrow") %}
|
||||
|
||||
<button>[Buy a 3Node](http://marketplace.3node.global/)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[Build a 3Node](https://library.threefold.me/info/threefold#/tfgrid/farming/threefold__diy_guide)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[Farmers Chat](https://t.me/threefoldfarmers)</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center narrow") %}
|
||||
|
||||

|
||||
|
||||
<br>
|
||||
|
||||
### Build On Top of a **Decentralized Infrastructure**
|
||||
|
||||
True digital sovereignty for open-source builders. The ThreeFold Grid provides limitless possibilities, and brings a playground of industry-compatible easy-to-deploy solutions for developers.
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center narrow") %}
|
||||
|
||||
<button>[Deploy on ThreeFold](https://dashboard.grid.tf/)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[The Manual](https://manual.grid.tf/)</button>
|
||||
|
||||
|||
|
||||
|
||||
<button>[Builders Chat](https://t.me/threefoldtesting)</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 4 (FEATURED STORIES) -->
|
||||
|
||||
{% featured_stories() %}
|
||||
|
||||
## Featured Stories
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 5 (THE TEAM) -->
|
||||
|
||||
{% team_sec() %}
|
||||
|
||||
## **The Team**
|
||||
|
||||
{% end %}
|
||||
|
||||
<!-- section 6 (PARTNERS) -->
|
||||
|
||||
{% row(style="center margin") %}
|
||||
|
||||
## Believers and Collaborators <br> **In a Better Internet**
|
||||
|
||||
We are truly proud to be trusted by some of the biggest names in the industry.
|
||||
|
||||

|
||||
|
||||
<button>[Check All Partners](partners)</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
<br>
|
||||
|
||||
<br>
|
||||
|
||||
<!-- section 7 (IN THE NEWS) -->
|
||||
|
||||
{% row(style="center") %}
|
||||
|
||||
## **In the News**
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center between") %}
|
||||
|
||||
[](https://www.forbes.com/sites/johnkoetsier/2020/06/20/largest-distributed-peer-to-peer-grid-on-the-planet-laying-foundation-for-a-decentralized-internet/?fbclid=IwAR1WKCpqLcWPRWg5bPD6RCQE5JJjRPt6ey5vbEnu3db2FvJnp6-YKeVZNW8#79aa340e6798)
|
||||
|
||||
|||
|
||||
|
||||
[](https://cointelegraph.com/news/peer-to-peer-internet-has-lofty-goal-to-bring-true-decentralization)
|
||||
|
||||
|||
|
||||
|
||||
[](https://news.yahoo.com/news/threefold-set-disrupt-status-quo-051457787.html?guccounter=1)
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center between") %}
|
||||
|
||||
[](https://hackernoon.com/is-it-possible-to-create-a-decentralized-internet-this-startup-and-its-farmers-think-so-ey2e3ycf)
|
||||
|
||||
|||
|
||||
|
||||
[](https://smartereum.com/189750/threefold-is-audaciously-building-a-new-decentralized-internet/)
|
||||
|
||||
|||
|
||||
|
||||
[](https://tgdaily.com/web/6-dfinity-threefold-are-leading-an-internet-decentralization-revolution/)
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="center between") %}
|
||||
|
||||
[](https://cointelegraph-com.cdn.ampproject.org/c/s/cointelegraph.com/news/is-a-new-decentralized-internet-or-web-3-0-possible/amp)
|
||||
|
||||
|||
|
||||
|
||||
[](https://www.banklesstimes.com/2021/06/14/threefolds-green-technology-strategy-to-a-fairer-more-sustainable-world/)
|
||||
|
||||
|||
|
||||
|
||||
[](https://gritdaily.com/belarus-governments-control-internet/)
|
||||
|
||||
{% end %}
|
58
content/action/index.md
Normal file
@ -0,0 +1,58 @@
|
||||
---
|
||||
title: "Take actions"
|
||||
description: "Take actions and become a part of a pioneering Web4 movement with ThreeFold on 12.12.2024" # quotation marks to allow colons where used
|
||||
template: "layouts/action.html"
|
||||
insert_anchor_links: "left"
|
||||
extra:
|
||||
author: ThreeFold
|
||||
imgPath: tf.png
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
|
||||
|
||||
.rounded_img img {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
|
||||
.person img{
|
||||
border-radius: 100%;
|
||||
max-width:100px;
|
||||
}
|
||||
|
||||
|
||||
.myscale{
|
||||
transition: transform .5s;
|
||||
}
|
||||
|
||||
|
||||
.myscale:hover{
|
||||
transform: scale(1.2);
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
|
||||
|
||||
.road_border{
|
||||
|
||||
border-left: 1px solid rgb(156, 156, 156);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
.white-gray{
|
||||
color: #9f9f9f;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
BIN
content/action/tf.png
Normal file
After Width: | Height: | Size: 510 B |
18
content/blog/_index.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "ThreeFold Blog"
|
||||
paginate_by: 9
|
||||
description: "Dive in to read more of our stories, our past, our present, and our future. We envision a global, community-driven network of interconnected servers and nodes—the grid—that democratizes computing power and storage."
|
||||
# paginate_reversed: false
|
||||
|
||||
sort_by: "date"
|
||||
insert_anchor_links: "left"
|
||||
#base_url: "posts"
|
||||
#first: "first"
|
||||
#last: "last"
|
||||
template: "layouts/blog.html"
|
||||
page_template: "blogPage.html"
|
||||
#transparent: true
|
||||
generate_feed: true
|
||||
extra:
|
||||
imgPath: tf.png
|
||||
---
|
BIN
content/blog/africa_regen_summit_ii/africa_future_summit1.png
Normal file
After Width: | Height: | Size: 262 KiB |
BIN
content/blog/africa_regen_summit_ii/africa_regen_summit_ii.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
content/blog/africa_regen_summit_ii/greg_regen.jpeg
Normal file
After Width: | Height: | Size: 119 KiB |
BIN
content/blog/africa_regen_summit_ii/group_regen.jpeg
Normal file
After Width: | Height: | Size: 158 KiB |
37
content/blog/africa_regen_summit_ii/index.md
Normal file
@ -0,0 +1,37 @@
|
||||
---
|
||||
id: africa_regen_summit_ii
|
||||
title: "Reflecting on Africa Regenerative Futures Summits : Shaping a better digital future in Africa"
|
||||
image_caption: Africa Regen II
|
||||
description: In 2023, we had the pleasure of hosting two summits in Zanzibar – Read about the key outcomes.
|
||||
date: 2023-11-21
|
||||
taxonomies:
|
||||
people: [sam_taggart]
|
||||
tags: [community, event, collaboration, why]
|
||||
categories: [community, event, collaboration, why]
|
||||
extra:
|
||||
imgPath: africa_future_summit1.png
|
||||
---
|
||||
|
||||
In 2023, we had the pleasure of hosting two summits in Zanzibar – one in July and another in [November](https://www.threefold.io/newsroom/africa-regen-ii/), named the Africa Regenerative Future Summit. These events brought together leading innovators and investors committed to advancing human flourishing, with a specific emphasis on science and technology shaping the trajectory of Africa's future.
|
||||
|
||||
<br>
|
||||
|
||||
During the inaugural summit in July, Zanzibar's President, Dr. Hussein Mwinyi, honored us with his presence. In a formal declaration, he publicly expressed the government's dedication to establishing a digital free zone, a locally-owned Internet infrastructure, and an incubator to support young local innovators – all in collaboration with ThreeFold – and their commitment to the ICT sector as a whole.
|
||||
|
||||
<br>
|
||||
|
||||
The second summit saw the birth of Dunia Yetu (meaning "Our World" in Swahili), a collaborative movement forged in partnership with a cohort of tech developers and innovators from Dar Es Salaam. This initiative is driven by a shared commitment to reshape the digital landscape in Tanzania and Africa. Its goals include empowering coders, fostering economic development, and constructing a sovereign, autonomous digital ecosystem for a more promising digital future.
|
||||
|
||||
<br>
|
||||
|
||||
Looking ahead to 2024, our vision includes a continued series of gatherings focused on OurWorld, ThreeFold, and other projects and individuals prioritizing a planet-first, people-first approach to support Tanzania and the broader African continent.
|
||||
|
||||
<br>
|
||||
|
||||
More information:
|
||||
|
||||
<br>
|
||||
|
||||
- **Summit I:** Read [Zanzibar Seeks to Become a Digital FreeZone](https://www.thecitizen.co.tz/tanzania/zanzibar/zanzibar-seeks-to-become-digital-freezone--4316150) (via The Citizen) and [Mwinyi Commits to Improvement of Digital Spaces](https://dailynews.co.tz/mwinyi-commits-to-improvement-of-digital-spaces/) (via Daily News Tanzania) for further details.
|
||||
- **Summit II:** Learn more about [Dunia Yetu](https://www.threefold.io/newsroom/duniayetulaunchdar/)
|
||||
- **Dunia Yetu:** Read [Sovereign Internet - A game changer for Tanzania](https://www.thecitizen.co.tz/tanzania/news/national/sovereign-internet-a-game-changer-to-tanzania-startups-ecosystem-growth-449806) (via The Citizen)
|
BIN
content/blog/africa_regen_summit_ii/kalebu_regen.jpeg
Normal file
After Width: | Height: | Size: 121 KiB |
BIN
content/blog/africa_regen_summit_ii/kristof_regen.jpeg
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
content/blog/africa_regen_summit_ii/steph_regen.jpeg
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
content/blog/blog.png
Normal file
After Width: | Height: | Size: 719 KiB |
BIN
content/blog/tf.png
Normal file
After Width: | Height: | Size: 510 B |
58
content/ecosystem/index.md
Normal file
@ -0,0 +1,58 @@
|
||||
---
|
||||
title: "Solutions"
|
||||
description: "ThreeFold's Solutions." # quotation marks to allow colons where used
|
||||
template: "layouts/solutions.html"
|
||||
insert_anchor_links: "left"
|
||||
extra:
|
||||
author: Your name here
|
||||
imgPath: about/about_hero.png
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
|
||||
|
||||
.rounded_img img {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
|
||||
.person img{
|
||||
border-radius: 100%;
|
||||
max-width:100px;
|
||||
}
|
||||
|
||||
|
||||
.myscale{
|
||||
transition: transform .5s;
|
||||
}
|
||||
|
||||
|
||||
.myscale:hover{
|
||||
transform: scale(1.2);
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
|
||||
|
||||
.road_border{
|
||||
|
||||
border-left: 1px solid rgb(156, 156, 156);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
.white-gray{
|
||||
color: #9f9f9f;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
61
content/footer/_index.md
Normal file
@ -0,0 +1,61 @@
|
||||
---
|
||||
title: "Footer"
|
||||
description: ""
|
||||
insert_anchor_links: "left"
|
||||
template: "partials/footer.html"
|
||||
extra:
|
||||
logoPath: "images/new_logo_tft.png"
|
||||
socialLinks: { Twitter: "https://twitter.com/threefold_io", Telegram: "https://t.me/threefoldnews", Github: "https://github.com/threefoldfoundation", Github2: "https://github.com/threefoldtech"}
|
||||
---
|
||||
|
||||
{% row(style="lean") %}
|
||||
|
||||
##### TAKE ACTION
|
||||
|
||||
<br>
|
||||
|
||||
###### [Learn](https://docs.threefold.io/docs/introduction)
|
||||
|
||||
###### [Host (Farm)](https://docs.threefold.io/docs/category/become-a-farmer)
|
||||
|
||||
###### [Dashboard](https://dashboard.grid.tf/)
|
||||
|
||||
###### [Download TF Connect: iOS](https://apps.apple.com/us/app/3bot-login/id1459845885)
|
||||
|
||||
###### [Download TF Connect: Android](https://play.google.com/store/apps/details?id=org.jimber.threebotlogin&hl=en_US)
|
||||
|
||||
|||
|
||||
|
||||
##### <span class="text-gray-100">COMMUNITY</span>
|
||||
|
||||
<br>
|
||||
|
||||
###### [Main Chat](https://t.me/threefold)
|
||||
|
||||
###### [Hosting / Farming Chat](https://t.me/threefoldfarmers)
|
||||
|
||||
###### [Grid User Chat](https://t.me/threefoldtesting)
|
||||
|
||||
###### [Forum](https://forum.threefold.io/)
|
||||
|
||||
###### [Support](https://threefoldfaq.crisp.help/en/)
|
||||
|
||||
|||
|
||||
|
||||
##### ABOUT US
|
||||
|
||||
<br>
|
||||
|
||||
<h6><a target="_self" onclick="window.location.href='/why'">Why</a></h6>
|
||||
|
||||
<h6><a target="_self" onclick="window.location.href='/blog'">Blog</a></h6>
|
||||
|
||||
<h6><a target="_self" onclick="window.location.href='/newsroom'">NewsRoom</a></h6>
|
||||
|
||||
<h6><a target="_self" href="javascript:;" onclick="ml_account('webforms', '3562741', 'n7q9l7', 'show')">Newsletter</a></h6>
|
||||
|
||||
<h6><a target="_self" onclick="window.location.href='/community'">Community</a></h6>
|
||||
|
||||
|
||||
|
||||
{% end %}
|
84
content/header/_index_copy.md
Normal file
@ -0,0 +1,84 @@
|
||||
---
|
||||
title: "Header"
|
||||
description: "NEAR is on a mission to empower everyone to take back control of their money, their data, and their identity. Join us."
|
||||
insert_anchor_links: "left"
|
||||
template: "partials/header.html"
|
||||
extra:
|
||||
logoPath: "images/ourworld_logo2.png"
|
||||
imgPath: ""
|
||||
---
|
||||
|
||||
- Learn
|
||||
|
||||
{% row(style="lean") %}
|
||||
|
||||
### PURPOSE
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
#### [The Internot](/apage)
|
||||
|
||||
Whats wrong with the [internet](/apage)
|
||||
|
||||
<br>
|
||||
|
||||
#### Our Internet
|
||||
|
||||
Vision for the new internet
|
||||
|
||||
|||
|
||||
|
||||
### ECOSYSTEM
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
#### OurWorld DAO
|
||||
|
||||
Be a part of governance
|
||||
|
||||
<br>
|
||||
|
||||
#### Communities
|
||||
|
||||
Explore communities in OurWorld
|
||||
|
||||
<br>
|
||||
|
||||
#### DAOs
|
||||
|
||||
Decentralized autonomous organizations
|
||||
|
||||
|||
|
||||
|
||||
### APPLICATIONS
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
#### DAPPs
|
||||
|
||||
Decentralized applications
|
||||
|
||||
<br>
|
||||
|
||||
#### Projects
|
||||
|
||||
Projects in OurWorld
|
||||
|
||||
|||
|
||||
|
||||
### FEATURED
|
||||
|
||||
<br>
|
||||
<br>
|
||||
|
||||
#### OurWorld is Live
|
||||
|
||||
Be a part of the new internet
|
||||
|
||||
- [Join us]("/join-us")
|
||||
- [Blog]("/blog")
|
||||
|
||||
{% end %}
|
59
content/header/index.md
Normal file
@ -0,0 +1,59 @@
|
||||
---
|
||||
title: "Header"
|
||||
insert_anchor_links: "left"
|
||||
template: "partials/header.html"
|
||||
extra:
|
||||
logoPath: "images/new_logo_tft.png"
|
||||
|
||||
---
|
||||
|
||||
- [Vision]("/why")
|
||||
- [Features]("/what")
|
||||
- [Concept]("/initiatives")
|
||||
- [Virtual City]("/action")
|
||||
- Info
|
||||
|
||||
|
||||
{% row() %}
|
||||
|
||||
<button class="dropdown" onclick="window.location.href='/newsroom'">
|
||||
|
||||
[Newsroom](/newsroom)
|
||||
<br>
|
||||
<p class="text-sm">Check the Latest Updates</p>
|
||||
|
||||
</button>
|
||||
|
||||
|||
|
||||
|
||||
<button class="dropdown" onclick="window.location.href='/blog'">
|
||||
|
||||
[Blog](/blog)
|
||||
<br>
|
||||
<p class="text-sm">Explore the Blogs</p>
|
||||
|
||||
</button>
|
||||
|
||||
|||
|
||||
|
||||
<button class="dropdown" onclick="openInNewTab('https://docs.threefold.io/docs/introduction')">
|
||||
|
||||
[Docs](https://docs.threefold.io)
|
||||
<br>
|
||||
<p class="text-sm">V4 Documentation</p>
|
||||
|
||||
</button>
|
||||
|
||||
|||
|
||||
|
||||
<button class="dropdown" onclick="openInNewTab('https://manual.grid.tf/')">
|
||||
|
||||
[Manual](https://manual.grid.tf/)
|
||||
<br>
|
||||
<p class="text-sm">V3 Documentation</p>
|
||||
|
||||
</button>
|
||||
|
||||
|
||||
|
||||
{% end %}
|
345
content/home/index.md
Normal file
@ -0,0 +1,345 @@
|
||||
---
|
||||
title: "ThreeFold"
|
||||
description: "TF offers a secure, sovereign infrastructure layer for Web4, delivering unparalleled scalability, incorruptible and permanent data storage, AI and Web2/Web3/Edge compatibility, and 100% uptime for a resilient digital future."
|
||||
insert_anchor_links: "left"
|
||||
extra:
|
||||
author: ThreeFold
|
||||
imgPath: home/tf.png
|
||||
---
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- section 1 (header) -->
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
|
||||
{% row(style=" center header margin") %}
|
||||
|
||||
<div class="max-w-none lg:max-w-4xl leading-normal mx-auto">
|
||||
|
||||
# **Self-Healing Data, Network, <br>and Cloud Platform**
|
||||
|
||||
Imagine a system which can scale to a planetary level, is compatible with AI, Cloud, Web2, Web3 and Edge IT workloads, has the potential to recover from unforeseen events, capable to provide 100% uptime, and allows any machine and human to communicate over the shortest, most direct path.
|
||||
|
||||
<br>
|
||||
|
||||
<button class="blue_b">[Host](/host)</button><button class="blue_b">[Deploy](/deploy)</button><button class="green">[About](/about)</button>
|
||||
|
||||
|
||||
|||
|
||||
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- section 3 (Map) -->
|
||||
<div class="container mx-auto">
|
||||
|
||||
|
||||
{% grid_stats() %}
|
||||
|
||||
|
||||
#### <span class="blue">LIVE AND OPERATIONAL</span>
|
||||
|
||||
|
||||
## **Proven by a global community**
|
||||
|
||||
|
||||
With ThreeFold, individuals, organizations, communities, countries, and network states deploy their own<br>sovereign infrastructure. Our Proof of Concept Network with 50,000 vCPUs is live and operational.
|
||||
|
||||
**Version 3.14 is live on Mainnet**
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- section 4 (Host the cloud) -->
|
||||
|
||||
|
||||
<div style="background-color:#F6F6F6">
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row( style="mtop center between ") %}
|
||||
|
||||
#### <span class="blue">THREEFOLD DIFFERENCE</span>
|
||||
|
||||
## **A ground-up approach**
|
||||
|
||||
ThreeFold is not a protocol. We've developed foundational technology that runs directly on bare metal (the hardware). ThreeFold is likely the only active project with a truly scalable solution addressing the Internet and Cloud's core bottlenecks: data, cloud, and network.
|
||||
|
||||
<br>
|
||||
|
||||
<button class="blue_b">[Learn More](/technology)</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
{% row(style="reverse margin") %}
|
||||
|
||||

|
||||
|
||||
|||
|
||||
|
||||
### **Unbreakable Data**
|
||||
|
||||
Data cannot be compromised and always remains private, owned by you. A scalable system, to the planetary level. Can be distributed and stored in ways which are at least 10x more efficient and orders of magnitude more secure and reliable.
|
||||
|
||||
### **Autonomous Cloud**
|
||||
|
||||
Self-healing and self-driving cloud based on an efficient and secure operating system runs directly on the hardware. Can run any Web 2, Web 3, or AI workload at the edge of the Internet, with more scalability and reliability.
|
||||
|
||||
### **P2P Network**
|
||||
|
||||
End-to-end encrypted overlay network, always looking for the shortest possible path between participants. Logical Internet address securely linked to a private key. Unlimited scale and performance optimizations.
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- section 9 (Ecosystem) -->
|
||||
|
||||
|
||||
<div class="container mx-auto">
|
||||
|
||||
|
||||
{% row( style="center mtop semiNarrow") %}
|
||||
|
||||
|
||||
<h4 class="green_text">REAL-WORLD IMPACT</h4>
|
||||
|
||||
|
||||
## **Collaboration, Innovation, Evolution**
|
||||
|
||||
ThreeFold’s technological infrastructure will empower many projects and initiatives across sectors. Here are two key projects.
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
{% row( style="semiNarrow mbottom") %}
|
||||
|
||||
<div class="rounded_img border-2 rounded-lg shadow-lg">
|
||||
|
||||
[](/newsroom/freezone-anouncement/)
|
||||
|
||||
<div class="p-6 lg:p-3 mycard">
|
||||
|
||||
#### **OurWorld Free Zone**
|
||||
|
||||
<br>
|
||||
|
||||
<span class="text-md truncate ..." >ThreeFold is working with the Zanzibar Communication Corporation (ZICTIA), on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all. The announcement was made August 2023, and progress has been ongoing behind the scenes since then. Updates expected Q4 2024.
|
||||
</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|||
|
||||
|
||||
|
||||
<div class="rounded_img border-2 rounded-lg shadow-lg">
|
||||
|
||||
|
||||
[](/newsroom/duniayetulaunchdar/)
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="p-6 lg:p-3 mycard">
|
||||
|
||||
|
||||
#### **Tanzanian Sovereign Internet**
|
||||
|
||||
<br>
|
||||
<span class="text-md truncate ..." >
|
||||
In January 2024, ThreeFold announced in collaboration with The ICT Commission of Tanzania and Holochain a collaboration to deploy sovereign Internet in Tanzania, along with the introduction of coding academies and innovation hubs. The Dunia Yetu cooperative is being set up and efforts will ramp up in 2025.
|
||||
|
||||
</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% end %}
|
||||
|
||||
</div>
|
||||
|
||||
<!-- section 5 (INCA) -->
|
||||
|
||||
<div style="background-color:#F6F6F6">
|
||||
<div class="container mx-auto">
|
||||
|
||||
{% row(style="margin") %}
|
||||
|
||||
|
||||

|
||||
|
||||
|
||||
|||
|
||||
|
||||
|
||||
#### <span class="green_text">THE NEXT CHAPTER</span>
|
||||
|
||||
## **Ready for commercialization**
|
||||
|
||||
For years, ThreeFold has been quietly and steadily developing its innovative technology, with a solid foundation of mature infrastructure that is now ready to take the next leap forward.
|
||||
|
||||
<br>
|
||||
|
||||
We are currently fundraising for the next stage of our project – major commercial expansion. This will involve the launch of the $INCA token on the Solana blockchain. If you are interested in learning more or taking part, please reach out.
|
||||
|
||||
<br>
|
||||
|
||||
<button class="blue_b">[Get in Touch](https://calendly.com/florian_threefold/30min)</button>
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- section 10 (news) -->
|
||||
|
||||
|
||||
<div class="rounded_img container mx-auto">
|
||||
|
||||
|
||||
{% row( style="mtop semiNarrow") %}
|
||||
|
||||
|
||||
## **Top Blogs**
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
{% row( style="mbottom semiNarrow") %}
|
||||
|
||||
|
||||
<div class="rounded_img">
|
||||
|
||||
|
||||
[](/blog/ground-up-innovations/)
|
||||
|
||||
|
||||
<br>
|
||||
|
||||
##### From the ground up: Three inventions that make ThreeFold possible
|
||||
|
||||
</div>
|
||||
|
||||
|||
|
||||
|
||||
[](/blog/evolution-of-the-internet)
|
||||
|
||||
<br>
|
||||
|
||||
##### The Evolution of the Internet: From free to controlled, and back again
|
||||
|
||||
|||
|
||||
|
||||
<div class="pl-12 road_border">
|
||||
<h3 class="mt-0 font-semibold">JOIN IN</h3>
|
||||
|
||||
|
||||
<div class="my-4">
|
||||
<a href="https://manual.grid.tf" target="_blank">
|
||||
<h4 class="text-xl green_text font-normal my-0">Manuals</h4>
|
||||
<p class="white-gray font-normal">Dive deeper into our technology</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="my-4">
|
||||
<a href="https://threefoldfaq.crisp.help/en/" target="_blank">
|
||||
<h4 class="text-xl green_text font-normal my-0">Support</h4>
|
||||
<p class="white-gray font-normal">Get assistance from our Support Team</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="my-4">
|
||||
<a href="/community" target="_blank">
|
||||
<h4 class="text-xl green_text font-normal my-0">Community</h4>
|
||||
<p class="white-gray font-normal">Be part of our journey and participate</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{% end %}
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<style>
|
||||
|
||||
|
||||
.card_h{
|
||||
height: 110px !important;
|
||||
}
|
||||
|
||||
|
||||
.rounded_img img {
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
|
||||
.white-gray{
|
||||
color: #9f9f9f;
|
||||
}
|
||||
|
||||
|
||||
.road_border{
|
||||
|
||||
border-left: 1px solid #cbcbcb;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@media (max-width: 480px) {
|
||||
|
||||
|
||||
|
||||
|
||||
.road_border{
|
||||
|
||||
border-left: 0px solid #cbcbcb;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</style>
|
BIN
content/newsroom/314_upgrade/314_upgrade.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
content/newsroom/314_upgrade/314_upgrade1.png
Normal file
After Width: | Height: | Size: 312 KiB |
20
content/newsroom/314_upgrade/index.md
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
id: 314_upgrade
|
||||
title: TF Grid Mainnet Upgraded to V3.14
|
||||
image_caption: 314_upgrade
|
||||
description: TF Grid 3.14 is now on Mainnet. To know more click here.
|
||||
date: 2024-07-16
|
||||
taxonomies:
|
||||
people: [bernadette_amanda_caster]
|
||||
tags: [tech,grid,community]
|
||||
news-category: [tech,grid,community]
|
||||
extra:
|
||||
imgPath: 314_upgrade1.png
|
||||
---
|
||||
|
||||
TF Grid 3.14 is now on Mainnet. This release is focused on stability and reliability and includes improvements and upgrades to Zero OS, TF Chain, Grid-Proxy, Farmerbot, Pulumi, and SDK-Go. Find the details [here](https://forum.threefold.io/t/gep-tf-grid-mainnet-release-3-14/4372).
|
||||
|
||||
<br/>
|
||||
|
||||
This upgrade requires an update of the Farmerbot to version 0.15.10. For instructions on how to update the Farmerbot, please see our [forum post](https://forum.threefold.io/t/farmerbot-update-required-for-grid-3-14/4388).
|
||||
|
18
content/newsroom/_index.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "News"
|
||||
paginate_by: 9
|
||||
description: "Check the latest updates on how we are building a more open, decentralized, and scalable internet for everyone." # quotation marks to allow
|
||||
# paginate_reversed: false
|
||||
|
||||
sort_by: "date"
|
||||
insert_anchor_links: "left"
|
||||
#base_url: "posts"
|
||||
#first: "first"
|
||||
#last: "last"
|
||||
template: "layouts/newsroom.html"
|
||||
page_template: "newsPage.html"
|
||||
#transparent: true
|
||||
generate_feed: true
|
||||
extra:
|
||||
imgPath: newsroom.png
|
||||
---
|
BIN
content/newsroom/newsroom.png
Normal file
After Width: | Height: | Size: 939 KiB |
BIN
content/partners/our_world_free_zone/freezone.png
Normal file
After Width: | Height: | Size: 2.5 MiB |
BIN
content/partners/our_world_free_zone/freezonecover.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
content/partners/our_world_free_zone/freezonecover2.png
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
content/partners/our_world_free_zone/freezonelogo.png
Normal file
After Width: | Height: | Size: 28 KiB |
52
content/partners/our_world_free_zone/index.md
Normal file
@ -0,0 +1,52 @@
|
||||
---
|
||||
id: our_world_free_zone
|
||||
title: Our World Free Zone
|
||||
description: ThreeFold is working with ZICTIA, on behalf of the Zanzibar government, to create the world’s first 100% Digital Free Zone – accessible and affordable for all.
|
||||
template: partnerPage.html
|
||||
taxonomies:
|
||||
partners-category: [foundation]
|
||||
tags: []
|
||||
date: 2024-03-19
|
||||
extra:
|
||||
countries: [Global]
|
||||
cities: []
|
||||
rank: 1
|
||||
imgPath: freezonecover2.png
|
||||
image_caption: Our World Free Zone
|
||||
partner_logo: freezonelogo.png
|
||||
websites: https://freezone.ourworld.tf/
|
||||
private: 0
|
||||
---
|
||||
|
||||
<br/>
|
||||
|
||||
### **A Sovereign Economic Zone**
|
||||
|
||||
Imagine if an entrepreneur, digital nomad, or any organization could obtain a digital company license, a bank account supporting both fiat and cryptocurrencies, and handle their legal requirements and taxes – all within a single streamlined platform. ThreeFold technology will be leveraged to enable just that within the world’s first 100% digital free zone – accessible and affordable for all.
|
||||
|
||||
<br/>
|
||||
|
||||
The government of Zanzibar is undertaking several initiatives to shift its economy from being largely dependent on tourism to embracing the IT sector. As part of this vision they have partnered with ThreeFold via [ZICTIA](https://zictia.go.tz/), the Zanzibar ICT Infrastructure Agency, to create the world’s first digital free zone.
|
||||
|
||||
<br/>
|
||||
|
||||
This collaboration was formally announced by Zanzibar’s President, Dr. Hussein Ali Mwinyi, at ThreeFold’s Africa Regenerative Future Summit in July 2023 which brought together a group of passionate entrepreneurs and actors working on innovative planet-first projects in Africa. The president promised to establish the digital free zone from a regulatory perspective, with the goal of developing local skills, bringing about major changes in the ICT sector, and creating job opportunities to increase the nation’s income.
|
||||
|
||||
<br>
|
||||
|
||||
<div style="display: flex; justify-content: center;">
|
||||
<img src="freezone.png" alt="our_world_free_zone" width="600"/>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
As the world’s first digital free zone, this special economic zone will be supported by ThreeFold’s innovative tech stack. Merging traditional business structures with groundbreaking technology, the free zone will be a pioneering hub for business, fostering an ecosystem that is adaptive, resilient, and conducive to growth. It will be one of the first environments where Decentralized Autonomous Organizations (DAOs) can be legally established and operated. Some of the ThreeFold team is based in Zanzibar and working to make the free zone live by the end of 2024.
|
||||
|
||||
<br/>
|
||||
|
||||
ThreeFold’s latest technology, which is currently being fine tuned, the Digital Twin, will also be launched as part of the Free Zone membership. The Digital Free Zone (DFZ) Digital Twin application provides a centralized interface for accessing all free zone features and users will own 100% of the data and digital capabilities. You can be among the first to embark on the OurWorld Digital Free Zone journey.
|
||||
|
||||
### **News Coverage**
|
||||
|
||||
- [The Citizen](https://www.thecitizen.co.tz/tanzania/zanzibar/zanzibar-seeks-to-become-digital-freezone--4316150)
|
||||
- [Daily News Tanzania](https://dailynews.co.tz/mwinyi-commits-to-improvement-of-digital-spaces/)
|
46
content/partners/sikana/index.md
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
id: sikana
|
||||
title: Sikana
|
||||
description: Sikana is on a mission to empower individuals with practical skills through free educational videos – local content in local languages on top of local infrastructure.
|
||||
template: partnerPage.html
|
||||
taxonomies:
|
||||
partners-category: [foundation]
|
||||
tags: []
|
||||
date: 2024-03-19
|
||||
extra:
|
||||
countries: [Global]
|
||||
cities: []
|
||||
rank: 1
|
||||
imgPath: sikana.png
|
||||
image_caption: sikana
|
||||
partner_logo: sikana_logo.png
|
||||
websites: https://www.sikana.tv/en
|
||||
private: 0
|
||||
---
|
||||
|
||||
<br/>
|
||||
|
||||
### **Education for all**
|
||||
|
||||
Sikana is a non-profit organization on a mission to empower individuals with practical skills through free educational video programs. Targeting the 3+ billion people around the world with access to screens they have so far delivered over 400,000,000 online video lessons. Some of the projects they have been involved in include facilitating access to energy and fighting against energy poverty in the Ivory Coast, helping to save biodiversity in France and empowering women with vocational training at sewing schools in India.
|
||||
|
||||
|
||||
<br/>
|
||||
|
||||

|
||||
|
||||
<br/>
|
||||
|
||||
However, the incredible scale of this inspirational project comes with significant hosting fees, inhibiting Sikana’s ability to equip people and communities around the world with new knowledge and skills. It was at this point in Sikana’s journey that co-founders Florian Fournier and Grégory Flipo met the ThreeFold team. We shared the same vision of making education accessible and creating a more equitable and greener world, sparking an exciting partnership between ThreeFold and Sikana, and bringing Florian and Gregory onto the team.
|
||||
|
||||
<br/>
|
||||
|
||||
ThreeFold’s decentralized grid can step in as the solution to these immense hosting costs allowing Sikana to extend its global reach and helping even more communities around the world. Together, we are working to create and provide local content in local languages on top of local infrastructure, fulfilling the goal of making education accessible to everyone.
|
||||
|
||||
<br/>
|
||||
|
||||
You can help us on this mission by either creating educational content which will be disseminated on top of the ThreeFold Grid or you can help create the necessary capacity to host these educational programs. Hosting a node can mean hosting someone’s education. Learn more about [Sikana](https://www.sikana.tv/en) and how to host this impactful organization [here](https://www.threefold.io/host/).
|
||||
|
||||
<br/>
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/8ArbVX7bV1w" title="The Sikana Trailer: What Is This Channel for?" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
BIN
content/partners/sikana/sikana.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
content/partners/sikana/sikana2.png
Normal file
After Width: | Height: | Size: 78 KiB |
BIN
content/partners/sikana/sikana_logo.png
Normal file
After Width: | Height: | Size: 10 KiB |
45
content/partners/social_network/index.md
Normal file
@ -0,0 +1,45 @@
|
||||
---
|
||||
id: social_network
|
||||
title: Social Network
|
||||
description: Earth Staking’s Social Network is the first Bitcoin Staking Layer 2 on Earth, collaborating with ThreeFold to improve security, scalability, and energy-efficiency.
|
||||
template: partnerPage.html
|
||||
taxonomies:
|
||||
partners-category: [foundation]
|
||||
tags: []
|
||||
date: 2024-03-19
|
||||
extra:
|
||||
countries: [Global]
|
||||
cities: []
|
||||
rank: 1
|
||||
imgPath: social_network_cover.png
|
||||
image_caption: Social Network
|
||||
partner_logo: social_network_logo.png
|
||||
websites: https://www.social.network/en
|
||||
private: 0
|
||||
---
|
||||
|
||||
<br/>
|
||||
|
||||
### **Scaling Bitcoin**
|
||||
Earth Staking’s Social Network is the first Bitcoin Staking Layer 2 on Earth, designed to provide users with a more cost-effective, efficient and eco-friendly experience. Their mission is to decentralize scaling solutions for Bitcoin and create social networks that prioritize the well-being of Earth and its inhabitants. Having jointly identified challenges currently confronting Bitcoin and its alternatives, ThreeFold and Social Network have partnered together to improve the accessibility, security, scalability, reliability and energy efficiency of the Bitcoin Network.
|
||||
|
||||
<br>
|
||||
|
||||
<div style="display: flex; justify-content: center;">
|
||||
<img src="social_network.png" alt="social_network" width="800"/>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
Social Network will be integrated with and enhanced by ThreeFold technologies. This includes, but is not limited to, ThreeFold’s decentralized cloud – featuring Quantum Safe Storage and the Mycelium Network – as well as decentralized computation, and Zero OS. ThreeFold's infrastructure provides the ideal backbone for Earth Staking's ambitions, offering a robust, low-level decentralized framework perfectly suited to empower its vision.
|
||||
|
||||
<br/>
|
||||
|
||||
The partnership is also focused on advancing the development of cross-chain communication technology for Bitcoin, Ethereum, and others – enhancing scale, security, ease of use, and energy efficiency. To this end, ThreeFold and Earth Staking will look to create a seamless, frictionless, easy-to-use EarthWallet and node with built-in BTC Staking, ETH Light, and Nostr functionalities.
|
||||
|
||||
<br>
|
||||
|
||||
Our partnership agreement was formalized in January 2024 and we are now in the process of technical implementation.
|
||||
|
||||
|
||||
|
BIN
content/partners/social_network/social_network.png
Normal file
After Width: | Height: | Size: 2.3 MiB |
BIN
content/partners/social_network/social_network_cover.png
Normal file
After Width: | Height: | Size: 541 KiB |
BIN
content/partners/social_network/social_network_logo.png
Normal file
After Width: | Height: | Size: 12 KiB |
61
content/partners/tanzania_sovereign_internet/index.md
Normal file
@ -0,0 +1,61 @@
|
||||
---
|
||||
id: tanzania_sovereign_internet
|
||||
title: Tanzania's Sovereign Internet
|
||||
description: In collaboration with the ICT Commission of Tanzania and the tech community of Dar Es Salaam, ThreeFold is enabling a better digital way forward for Tanzania.
|
||||
template: partnerPage.html
|
||||
taxonomies:
|
||||
partners-category: [foundation]
|
||||
tags: []
|
||||
date: 2024-03-19
|
||||
extra:
|
||||
countries: [Global]
|
||||
cities: []
|
||||
rank: 1
|
||||
imgPath: tanzania_sovereign_internet_cover.png
|
||||
image_caption: Tanzania Sovereign Internet
|
||||
partner_logo: tanzania_sovereign_internet_logo.png
|
||||
websites:
|
||||
private: 0
|
||||
---
|
||||
|
||||
<br/>
|
||||
|
||||
### **A Sovereign Internet, By and For Tanzania**
|
||||
The current centralized Internet model works for the few and is GDP negative for most countries. Most nations do not own their Internet, instead with fiber optic cables transferring and storing their data in data centers in the Global North. A relatively small set of big companies have access to and control over the data of billions of citizens, making us a product. The result is a loss of national money, data, sovereignty and influence.
|
||||
|
||||
<br>
|
||||
|
||||
Our feasibility study showed that Tanzania is losing around 10 Billion USD per year from not having their own infrastructure and applications. The current centralized model needs to change.
|
||||
|
||||
<br>
|
||||
|
||||
**Centralized model vs ThreeFold model**
|
||||
|
||||
<br>
|
||||
|
||||
<div class="object-cover w-full" style="display: flex; justify-content: center;">
|
||||
<img src="todays_internet.png" alt="tanzania_sovereign_internet"/>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="object-cover w-full" style="display: flex; justify-content: center;">
|
||||
<img src="threefold_internet.jpeg" alt="tanzania_sovereign_internet"/>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
Tanzania shares this vision and together with ThreeFold has embarked on a mission to build their own sovereign Internet infrastructure where the people are in control and are the ones benefiting from their own digital lives. To achieve this mission, Tanzania’s ICT Commission has partnered with us to leverage ThreeFold technology to enable a Tanzanian-owned Internet infrastructure and allow local communities to build the digital solutions that they need and want on top of the grid.
|
||||
|
||||
<br/>
|
||||
|
||||
ThreeFold’s unique technology is ideal for this transformative project because of its affordability, efficiency, accessibility, reliability, security, sustainability and ability to be co-owned. By focusing on everyone owning and running things together, an autonomous digital future shaped by the community will become a reality. It will be a Tanzanian internet designed by and for the people.
|
||||
|
||||
<br>
|
||||
|
||||
The project “Dunia Yetu”, meaning Our World in Swahili, was announced in January 2024 at a conference in Dar Es Salaam organized by ThreeFold and Tanzania’s ICT Commission. The next steps which the team is currently working on include helping local communities to deploy nodes across Dar es Salaam as well as opening a coworking hub. This hub will empower startups and entrepreneurs in Dar es Salaam to learn more about the ThreeFold grid and focus on knowledge sharing to help them build their own digital solutions on top of the grid. Learn more about Tanzania’s new internet [here](https://www.threefold.io/blog/dunia-yetu/).
|
||||
|
||||
<br/>
|
||||
|
||||
<div style="padding:56.63% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/919967495?h=340e62170b&badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="TBC NEWS JANUARY 19, 2024 | Sovereign internet: A game changer to Tanzania"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
|
||||
|
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 54 KiB |
BIN
content/partners/tanzania_sovereign_internet/todays_internet.png
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
content/partners/utilities_heder.png
Normal file
After Width: | Height: | Size: 178 KiB |
44
content/partners/veverse/index.md
Normal file
@ -0,0 +1,44 @@
|
||||
---
|
||||
id: veverse
|
||||
title: VeVerse
|
||||
description: VeVerse, a strong believer in a decentralized metaverse, is creating a virtual universe which eradicates cultural boundaries and supports the free flow of ideas and knowledge.
|
||||
template: partnerPage.html
|
||||
taxonomies:
|
||||
partners-category: [foundation]
|
||||
tags: []
|
||||
date: 2024-03-19
|
||||
extra:
|
||||
countries: [Global]
|
||||
cities: []
|
||||
rank: 1
|
||||
imgPath: veverse_cover.png
|
||||
image_caption: Veverse
|
||||
partner_logo: veverse_logo.png
|
||||
websites: https://veverse.com/
|
||||
private: 0
|
||||
---
|
||||
|
||||
<br/>
|
||||
|
||||
### **A Metaverse eradicating cultural boundaries**
|
||||
|
||||
VeVerse aims to create a virtual universe which eradicates cultural boundaries and supports the free flow of ideas and knowledge. The vision is to provide a metaverse platform which bridges virtual worlds, digital assets and communities and to empower museums, artists and game developers to construct captivating environments together where users can play, explore and connect.
|
||||
|
||||
<br>
|
||||
|
||||
One of the critical moments which inspired this project was when VeVerse’s founder, Vasily Gnuchev, traveled to Egypt. In his own words “experiencing the rich history and art of this ancient civilization firsthand, I became even more determined to create a platform where such wonders could be shared with people worldwide.” It was on this trip Vasily met ThreeFold co-founder Kristof De Spiegeleer, who shared a passion for art and decentralization and whose encouragement played a crucial role in propelling VeVerse’s first project, Artheon, forward. Artheon is a virtual museum which breaks down cultural barriers by providing global access to artistic masterpieces. Check out this fascinating project [here](https://artheon3d.veverse.com/) and visualize it in the video below.
|
||||
|
||||
<br>
|
||||
|
||||
<div class="object-cover w-full" style="display: flex; justify-content: center;">
|
||||
<img src="veverse.png" alt="veverse"/>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
One of the problems facing VeVerse, and all other metaverse products in existence, is the inadequate computational and connectivity infrastructure available today. Current infrastructure lacks the speed and capacity to power such expansive digital experiences. Latency levels are also significantly higher than the almost zero latency requirements of metaverse data being stored in close proximity to users. Edge computing emerges as a vital solution to realizing the metaverse, offering decentralized local data storage hardware that drastically reduces latency by storing data closer to users. This is where ThreeFold steps in as a pivotal player, offering the largest decentralized grid globally, equipped with edge cloud and computing capabilities essential for powering the metaverse's future. The partnership between ThreeFold and VeVerse will help bring cultural artworks and historical artifacts to billions. Help host this innovative solution by expanding ThreeFold’s cloud capacity.
|
||||
|
||||
<br>
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/FCjofnZnTDk?si=GexBObXsBJ-9zvyz" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
|
||||
|
BIN
content/partners/veverse/veverse.png
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
content/partners/veverse/veverse_cover.png
Normal file
After Width: | Height: | Size: 1001 KiB |
BIN
content/partners/veverse/veverse_logo.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
45
content/partners/vverse/index.md
Normal file
@ -0,0 +1,45 @@
|
||||
---
|
||||
id: vverse
|
||||
title: VVerse
|
||||
description: VVerse offers a cutting-edge platform for virtual socializing and entertainment – benefiting from ThreeFold's scalable infrastructure to provide a smooth experience for all.
|
||||
template: partnerPage.html
|
||||
taxonomies:
|
||||
partners-category: [foundation]
|
||||
tags: []
|
||||
date: 2024-03-19
|
||||
extra:
|
||||
countries: [Global]
|
||||
cities: []
|
||||
rank: 1
|
||||
imgPath: vverse_cover.png
|
||||
image_caption: Veverse
|
||||
partner_logo: vverse_logo.png
|
||||
websites: https://www.vverse.co/explore?tag=
|
||||
private: 0
|
||||
---
|
||||
|
||||
<br/>
|
||||
|
||||
### **A cutting-edge Metaverse platform**
|
||||
|
||||
VVerse offers a cutting-edge platform for virtual socializing and entertainment. One of their first products is [VinDo](https://www.vindo.ai/), the next generation communication and business tool to streamline your interactions, empower your business, simplify your workflow and amplify your results. Businesses can become virtual with VinDO and redefine customer experiences in the metaverse. Checkout the video below to see this metaverse in action.
|
||||
|
||||
<br>
|
||||
|
||||
<div style="display: flex; justify-content: center;">
|
||||
<img src="vverse.png" alt="vverse" width="800"/>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
|
||||
VVerse has chosen to partner with ThreeFold as its infrastructure partner due to its unparalleled capabilities in powering the metaverse's evolution. With ThreeFold's decentralized grid and edge cloud computing, VVerse aims to overcome the limitations of current infrastructure, particularly in terms of latency and scalability. ThreeFold's edge cloud infrastructure minimizes latency, enabling real-time interactions in VR and AR settings. Users will experience seamless interactions and immersive experiences without delays. As VVerse anticipates an influx of users engaging in diverse activities simultaneously, ThreeFold's infrastructure offers scalable solutions. This ensures that the platform can efficiently handle spikes in demand, providing a smooth experience for all users.
|
||||
|
||||
<br>
|
||||
|
||||
Through strategic partnerships with metaverse innovators like VVerse, ThreeFold is paving the way for a future where digital and physical realities seamlessly coalesce. Together, these efforts propel the metaverse towards its full potential, revolutionizing digital experiences for users worldwide.
|
||||
|
||||
<br>
|
||||
|
||||
<div style="padding:56.6% 0 0 0;position:relative;"><iframe src="https://player.vimeo.com/video/917760972?badge=0&autopause=0&player_id=0&app_id=58479" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write" style="position:absolute;top:0;left:0;width:100%;height:100%;" title="vindo_intro"></iframe></div><script src="https://player.vimeo.com/api/player.js"></script>
|
||||
|
||||
|
BIN
content/partners/vverse/vverse.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
content/partners/vverse/vverse_cover.png
Normal file
After Width: | Height: | Size: 783 KiB |
BIN
content/partners/vverse/vverse_logo.png
Normal file
After Width: | Height: | Size: 16 KiB |
11
content/people/_index.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
title: "Our People"
|
||||
paginate_by: 4
|
||||
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 make the world a better place for the people around us."
|
||||
extra:
|
||||
imgPath: tf.png
|
||||
---
|
BIN
content/people/abdulrahman_elawady/abdulrahman_elawady.jpg
Normal file
After Width: | Height: | Size: 3.4 MiB |
24
content/people/abdulrahman_elawady/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Abdulrahman Elawady
|
||||
weight: 9
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [abdulrahman_elawady]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: abdulrahman_elawady.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/abdulrahmanelawady/,
|
||||
websites: https://threefold.io/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Abdulrahman Elawady is a passionate software engineer devoted to open-source projects. With a strong enthusiasm for technology, he enjoys collaborating with others to innovate and create impactful solutions. His dedication to the open-source community motivates him to keep learning and stay updated on software development advancements.
|
||||
|
||||
--!>
|
BIN
content/people/adnan_fatayerji/adnan_fatayerji.jpg
Normal file
After Width: | Height: | Size: 219 KiB |
24
content/people/adnan_fatayerji/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Adnan Fatayerji
|
||||
weight: 1
|
||||
description: Co-Founder
|
||||
taxonomies:
|
||||
people: [adnan_fatayerji]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: adnan_fatayerji.jpg
|
||||
organizations: [threefold_foundation]
|
||||
countries: [UAE, Spain]
|
||||
cities: [Dubai, Ibiza]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/adnansf/,
|
||||
websites: https://threefold.io/, https://www.mazraa.io/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Honored to be part of a team that has the potential to make the world a better place by connecting billions of people to a new, accessible, data sovereign and environmentally conscious internet. A social entrepreneur, plant based warrior and a sovereign digital economy advocate with a passion for music creation and collaboration. Adnan has been based in the United Arab Emirates for the past 20 years, during which he has built successful grass-root businesses and invested startups in various sectors. At ThreeFold Adnan is responsible for driving the ThreeFold Foundation Ecosystem. Adnan is also the CEO of the @Mazraa Cooperative which is a founding farm and P2P Cloud Capacity provider on the ThreeFold Network.
|
||||
|
||||
--!>
|
BIN
content/people/ahmed_hanafy/ahmed_hanafy.jpg
Normal file
After Width: | Height: | Size: 439 KiB |
25
content/people/ahmed_hanafy/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Ahmed Hanafy
|
||||
weight: 3
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [ahmed_hanafy]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: ahmed_hanafy.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/ahmed-hanafy-7250/,
|
||||
github: https://github.com/AhmedHanafy725,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Ahmed is an Software Engineer, started his career at Codescalers, and now has about a 5 year experience in Cloud computing software. Engineer fell in love with Threefold I believe that Threefold is changing the world by building the new neutral internet, it's a great experience to be part of this.
|
||||
|
||||
--!>
|
BIN
content/people/ahmed_harby/ahmed_harby.jpg
Normal file
After Width: | Height: | Size: 140 KiB |
25
content/people/ahmed_harby/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Ahmed Saleh Harby
|
||||
weight: 4
|
||||
description: Software Testing Engineer
|
||||
taxonomies:
|
||||
people: [ahmed_harby]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: ahmed_harby.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/ahmed-saleh-harby/,
|
||||
github: https://github.com/A-Harby,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Ahmed is a passionate software test engineer with experience in software testing and automation using Selenium, Cypress, and other technologies. And always curious to learn more.
|
||||
|
||||
--!>
|
BIN
content/people/ahmed_thabet/ahmed_thabet.jpg
Normal file
After Width: | Height: | Size: 133 KiB |
25
content/people/ahmed_thabet/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Ahmed Thabet
|
||||
weight: 2
|
||||
description: Development Team Lead
|
||||
taxonomies:
|
||||
people: [ahmed_thabet]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: ahmed_thabet.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/ahmed-te-youssef/,
|
||||
github: https://github.com/xmonader,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
I lead the development of the Threefold Grid.I want to build beautiful applications that don't productize the users or invade their privacy.
|
||||
|
||||
--!>
|
BIN
content/people/alaa_mahmoud/alaa_mahmoud.jpg
Normal file
After Width: | Height: | Size: 318 KiB |
24
content/people/alaa_mahmoud/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Alaa Mahmoud
|
||||
weight: 2
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [alaa_mahmoud]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: alaa_mahmoud.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/alaa-mahmoud-647236153/,
|
||||
websites: https://threefold.io/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Alaa is an accomplished software engineer boasting over a year of professional experience in the field.Alaa consistently strives for excellence in all endeavors. With a passion for innovation and a dedication to achieving results, they bring invaluable expertise to every project they undertake.
|
||||
|
||||
--!>
|
BIN
content/people/alexandre_hannelas/alexandre_hannelas.jpeg
Normal file
After Width: | Height: | Size: 118 KiB |
25
content/people/alexandre_hannelas/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Alexandre Hannelas
|
||||
weight: 2
|
||||
description: CFO, ThreeFold
|
||||
taxonomies:
|
||||
people: [alexandre_hannelas]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: alexandre_hannelas.jpeg
|
||||
organizations: [threefold_foundation]
|
||||
countries: [France]
|
||||
cities: [Aix-en-Provence]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/alexandre-hannelas-741681112/,
|
||||
github: https://github.com/AlexandreHannelas,
|
||||
websites: https://threefold.io/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
After graduating from a Master in Finance at Toulouse School of Management, Alexandre worked with regenerative companies to help them in their funding round. He quickly thought about how unsustainable our current financial market is and reflecting on how can we make this system more devoted to collaboration instead of competition. Believing that digital currencies can solve a lot economical problems, he joined ThreeFold because it is perfectly aligned with his vision of enhancing people’s life on this earth. Being an artist-painter on the side, he is creating an online gallery which will promote and support international artists whose inspirations come from their deep connection with nature. He has the aim of bridging the creative world with the business world.
|
||||
|
||||
--!>
|
BIN
content/people/amira_abouhadid/amira_abouhadid.jpg
Normal file
After Width: | Height: | Size: 218 KiB |
25
content/people/amira_abouhadid/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Amira Abouhadid
|
||||
weight: 4
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [amira_abouhadid]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: amira_abouhadid.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/amira-abouhadid/,
|
||||
github: https://github.com/amiraabouhadid,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Trilingual (Arabic, English & German) software developer and chemical engineer skilled in remote pair programming and mentoring. I can use multiple languages, frameworks, and technologies to efficiently achieve a project’s goals.
|
||||
|
||||
--!>
|
BIN
content/people/ashraf_fouda/ashraf_fouda.jpeg
Normal file
After Width: | Height: | Size: 163 KiB |
25
content/people/ashraf_fouda/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Ashraf Fouda
|
||||
weight: 3
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [ashraf_fouda]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: ashraf_fouda.jpeg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/ashraffouda/,
|
||||
github: https://github.com/ashraffouda,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Software Engineer with passion in new technologies, love every thing that is really new and challenging. Threefold is changing the world by decentralizing and neutralizing the internet.
|
||||
|
||||
--!>
|
BIN
content/people/atef_nazmy/atef_nazmy.jpg
Normal file
After Width: | Height: | Size: 109 KiB |
24
content/people/atef_nazmy/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Atef Nazmy
|
||||
weight: 3
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [atef_nazmy]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: atef_nazmy.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/atef-nazmy-2521b2134/,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
IT-Telecom & Networking Engineer, having a great passion to learn more about new technologies.
|
||||
|
||||
--!>
|
After Width: | Height: | Size: 259 KiB |
24
content/people/bernadette_amanda_caster/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Bernadette Amanda Caster
|
||||
weight: 3
|
||||
description: Communication Team
|
||||
taxonomies:
|
||||
people: [bernadette_amanda_caster]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: bernadette_amanda_caster.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [India]
|
||||
cities: [Bangalore, Chennai]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/bernadette-caster-7a11a4b4/,
|
||||
websites: https://threefold.io/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Amanda loves exploring things, especially at her job. She is proactive in volunteering to help others at her job and personally. She accepts life as it comes but learns what she can along the way. She believes to make a change in this world we need to be the change.
|
||||
|
||||
--!>
|
BIN
content/people/blog.png
Normal file
After Width: | Height: | Size: 719 KiB |
After Width: | Height: | Size: 562 KiB |
23
content/people/cameron_ramraichan_labeyrie/index.md
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
title: Cameron Ramraichan Labeyrie
|
||||
weight: 3
|
||||
description: Support Team
|
||||
taxonomies:
|
||||
people: [cameron_ramraichan_labeyrie]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: cameron_ramraichan_labeyrie.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [India]
|
||||
cities: [Bangalore, Chennai]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
websites: https://threefold.io/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
I work as a support at Threefold.I am passionate about road trips, exploring new places, a music enthusiast, and enjoy trying exotic foods.
|
||||
|
||||
--!>
|
BIN
content/people/ehab_hassan/ehab_hassan.jpg
Normal file
After Width: | Height: | Size: 191 KiB |
25
content/people/ehab_hassan/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Ehab Hassan
|
||||
weight: 3
|
||||
description: Web Developer
|
||||
taxonomies:
|
||||
people: [ehab_hassan]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: ehab_hassan.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/ehab-hassan-a00897116/,
|
||||
github: https://github.com/ehab-hassan,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Positive person in every aspect of life. Senior Graphic Designer & Web Developer at ThreeFold. Fell in love with ThreeFold as I dream about the world where everyone can be happy.
|
||||
|
||||
--!>
|
BIN
content/people/erwan_renaut/erwan_renaut.jpeg
Normal file
After Width: | Height: | Size: 38 KiB |
25
content/people/erwan_renaut/index.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Erwan Renaut
|
||||
weight: 4
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [erwan_renaut]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: erwan_renaut.jpeg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Brazil]
|
||||
cities: [Rio de Janeiro]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/erwan-renaut-78869433/,
|
||||
github: https://github.com/renauter,
|
||||
websites: https://www.threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Since cloud technology is live, Erwan was always wondering where and how its datas were going to be stored and used. Sovereignty and privacy concerns always made him reluctant in using such services. That's why, after more than a decade working on oil & gas research projects, he was very enthusiastic about joining the Threefold team and contributing to define a new internet paradigm.
|
||||
|
||||
--!>
|
BIN
content/people/eslam_nawara/eslam_nawara.jpg
Normal file
After Width: | Height: | Size: 483 KiB |
23
content/people/eslam_nawara/index.md
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
title: Eslam Nawara
|
||||
weight: 2
|
||||
description: Development Team
|
||||
taxonomies:
|
||||
people: [eslam_nawara]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: eslam_nawara.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/eslam-nawara,
|
||||
websites: https://threefold.io/,
|
||||
}
|
||||
---
|
||||
<!--
|
||||
|
||||
Eslam is a passionate software engineer focused on crafting innovative solutions and tackling complex challenges through creative problem-solving. With a strong foundation in software development, Eslam excels in designing and implementing robust applications to meet diverse user needs.
|
||||
|
||||
--!>
|
BIN
content/people/evon_yacoub/evon_yacoub.jpg
Normal file
After Width: | Height: | Size: 111 KiB |
24
content/people/evon_yacoub/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Evon Yacoub
|
||||
weight: 5
|
||||
description: Office Manager, Cairo
|
||||
taxonomies:
|
||||
people: [evon_yacoub]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: evon_yacoub.jpg
|
||||
organizations: [threefold_tech]
|
||||
countries: [Egypt]
|
||||
cities: [Cairo]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/evon-yacoub-phri-b6028025/,
|
||||
websites: https://threefold.tech,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
Experienced Office Manager with a demonstrated history of working in IT industry. Skilled in Human Resources, Management, Office Administration, Administrative Coordination.
|
||||
|
||||
--!>
|
BIN
content/people/florian_fournier/florian_fournier.jpeg
Normal file
After Width: | Height: | Size: 525 KiB |
24
content/people/florian_fournier/index.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Florian Fournier
|
||||
weight: 1
|
||||
description: Co-Founder & CMO
|
||||
taxonomies:
|
||||
people: [florian_fournier]
|
||||
memberships: [team]
|
||||
extra:
|
||||
imgPath: florian_fournier.jpeg
|
||||
organizations: [ootopia, threefold_foundation]
|
||||
countries: [Brazil]
|
||||
cities: [Rio de Janeiro]
|
||||
private: 0
|
||||
socialLinks: {
|
||||
LinkedIn: https://www.linkedin.com/in/florianfournier/,
|
||||
websites: https://www.ootopia.org/,
|
||||
}
|
||||
---
|
||||
|
||||
<!--
|
||||
|
||||
When Florian left Apple he was 30 years old. It was the toughest decision he had ever made. Why leave a career so many people dream of – an executive position in the global company? Being really happy working at Appl and part of an amazing young and dynamic team that had been built over the last few years to take care of the marketing for Latin America. Florian was feeling accomplished to be working for such a great organization. But years were passing by. One after the other. And the iPhone 6S was replacing the iPhone 6 and so on. Year after year. A machine you cannot stop. Technology is amazing. Really. But so much seemed at stake about how it could be used to improve people’s lives and how they could really connect to each other.Florian feelt deep inside that working on the tools was not enough, and that he needed to work on the content and give it a different usage. He had to follow his heart and intuition. We will bring new ways of living together, relating, moving, consuming, taking care of each other and working in a more sustainable way, by unpicking current scenarios and anticipating future perspectives. The vision is always the same - to enact individual actions that address global challenges.
|
||||
|
||||
--!>
|
BIN
content/people/gregory_flipo/gregory_flipo.jpg
Normal file
After Width: | Height: | Size: 364 KiB |