diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..8b00a2c
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,38 @@
+echo "Starting build..."
+
+# TODO: Check if current version is latest to avoid redundant installation
+
+# 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 build
diff --git a/config.toml b/config.toml
new file mode 100644
index 0000000..c1b43b3
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,71 @@
+# The URL the site will be built for
+base_url = "https://www.jungle_paradise/"
+# Change this to your own URL! Please note this variable **must** be uncommented.
+
+title = "Jungle Paradise"
+description="Sovereign SmartPhone Like No Other"
+
+# 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 = "index.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
+
+[slugify]
+paths = "on"
+
+# 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 = true
+
+# 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
+
+[[taxonomies]]
+name = "categories"
+feed = true
+paginate_by = 2
+paginate_path = "blog-posts"
+
+[[taxonomies]]
+name = "categories"
+feed = true
+paginate_by = 2
+paginate_path = "blog-posts"
+
+[extra]
+header_class = "customize"
+footer_class = "customize"
diff --git a/content/.DS_Store b/content/.DS_Store
new file mode 100644
index 0000000..2564492
Binary files /dev/null and b/content/.DS_Store differ
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..dff7a4b
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,13 @@
+---
+title: "Incubaid"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+sort_by: weight
+weight: 1
+extra:
+ logo_path: images/logo.png
+---
+
+
diff --git a/content/health&wellness/.DS_Store b/content/health&wellness/.DS_Store
new file mode 100644
index 0000000..d57a180
Binary files /dev/null and b/content/health&wellness/.DS_Store differ
diff --git a/content/health&wellness/img/.DS_Store b/content/health&wellness/img/.DS_Store
new file mode 100644
index 0000000..5008ddf
Binary files /dev/null and b/content/health&wellness/img/.DS_Store differ
diff --git a/content/health&wellness/img/graphene.png b/content/health&wellness/img/graphene.png
new file mode 100644
index 0000000..0fc4bf0
Binary files /dev/null and b/content/health&wellness/img/graphene.png differ
diff --git a/content/health&wellness/img/grid_new_internet.jpeg b/content/health&wellness/img/grid_new_internet.jpeg
new file mode 100644
index 0000000..ba48e72
Binary files /dev/null and b/content/health&wellness/img/grid_new_internet.jpeg differ
diff --git a/content/health&wellness/img/grid_new_internet.png b/content/health&wellness/img/grid_new_internet.png
new file mode 100644
index 0000000..9b079ae
Binary files /dev/null and b/content/health&wellness/img/grid_new_internet.png differ
diff --git a/content/health&wellness/img/grid_people.jpeg b/content/health&wellness/img/grid_people.jpeg
new file mode 100644
index 0000000..483736f
Binary files /dev/null and b/content/health&wellness/img/grid_people.jpeg differ
diff --git a/content/health&wellness/img/ourphone.png b/content/health&wellness/img/ourphone.png
new file mode 100644
index 0000000..5856b5b
Binary files /dev/null and b/content/health&wellness/img/ourphone.png differ
diff --git a/content/health&wellness/img/ourverse.png b/content/health&wellness/img/ourverse.png
new file mode 100644
index 0000000..6267200
Binary files /dev/null and b/content/health&wellness/img/ourverse.png differ
diff --git a/content/health&wellness/img/placeholder.png b/content/health&wellness/img/placeholder.png
new file mode 100644
index 0000000..51663b0
Binary files /dev/null and b/content/health&wellness/img/placeholder.png differ
diff --git a/content/health&wellness/img/technology.png b/content/health&wellness/img/technology.png
new file mode 100644
index 0000000..16f9853
Binary files /dev/null and b/content/health&wellness/img/technology.png differ
diff --git a/content/health&wellness/img/tf.png b/content/health&wellness/img/tf.png
new file mode 100644
index 0000000..4b01e3a
Binary files /dev/null and b/content/health&wellness/img/tf.png differ
diff --git a/content/health&wellness/img/tfbg.png b/content/health&wellness/img/tfbg.png
new file mode 100644
index 0000000..9095171
Binary files /dev/null and b/content/health&wellness/img/tfbg.png differ
diff --git a/content/health&wellness/index.md b/content/health&wellness/index.md
new file mode 100644
index 0000000..981a40e
--- /dev/null
+++ b/content/health&wellness/index.md
@@ -0,0 +1,26 @@
+---
+title: "Health & Wellness"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 4
+---
+
+
+
+{% row(margin="withContainer" padding="bottom") %}
+
+#### If you are looking for a one of a kind experience in Zanzibar, look no further... At Jungle Paradise Beach Resort & SPA, you will fall in love with the stunning views and unique history.
+
+
+Jungle Paradise Beach Resort & Spa @ Mbweni Ruins Zanzibar is your ideal choice, if you want to see and enjoy a unique place in Zanzibar Urban West. It's well-known for their historical Mbweni ruins, which took part in the ending of slavery in Zanzibar in the 1870s. Jungle Paradise is surrounded by a beautiful botanic garden which supports over 280 different kinds of tree species.
+
+
+Jungle paradise Beach Resort and SPA Zanzibar features 13 exclusive and cozy, air-conditioned beachfront Suites with a very high service standard. Each room provides a beautiful ocean-view, a private bathroom, Wi-Fi, a mini bar fridge and a balcony faced to the ocean, beach and pool area.
+
+
+
+
+|||
+
+
+
+{% end %}
+
+
+
+{% row(style="center" margin="withContainer" padding="top") %}
+
+# Investment Philosophy
+
+
+The technology we invest in is focused in these key areas:
+
+{% end %}
+
+{% row(style="center" margin="withContainer" padding="none" margin="moderate") %}
+
+
+
+
+|||
+
+
+
+|||
+
+
+
+|||
+
+
+
+|||
+
+
+
+
+|||
+
+
+
+
+{% end %}
+
+
+
+
+
+{% row(style="center" margin="moderate" padding="bottom") %}
+
+
+
+Our diverse & passionate team has a multitude of backgrounds, skillsets, and experiences.
+
+
+
+{% end %}
+
+
+
+
+
\ No newline at end of file
diff --git a/content/restaurant/.DS_Store b/content/restaurant/.DS_Store
new file mode 100644
index 0000000..abdf498
Binary files /dev/null and b/content/restaurant/.DS_Store differ
diff --git a/content/restaurant/adnan/img/adnan1.jpg b/content/restaurant/adnan/img/adnan1.jpg
new file mode 100644
index 0000000..7ce1d81
Binary files /dev/null and b/content/restaurant/adnan/img/adnan1.jpg differ
diff --git a/content/restaurant/adnan/img/adnan2.jpg b/content/restaurant/adnan/img/adnan2.jpg
new file mode 100644
index 0000000..88dd13e
Binary files /dev/null and b/content/restaurant/adnan/img/adnan2.jpg differ
diff --git a/content/restaurant/adnan/index.md b/content/restaurant/adnan/index.md
new file mode 100644
index 0000000..9404995
--- /dev/null
+++ b/content/restaurant/adnan/index.md
@@ -0,0 +1,59 @@
+---
+title: "Adnan Fatayerji"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
At Work. Adnan is a multidisciplinary and multi lingual entrepreneur with a successful track record in the software and infrastructure space. He is drawn towards projects and startups with amplified positive impact and is focused on tech companies that are ethically and compassionately driven. Today, he is a part of a diverse team of innovators trying to redefine the internet’s inclusivity through autonomous capabilities. At Incubaid, Adnan coordinates a spin-off, sister, tech incubator called ATWGreen which is focused on empowering startups in the field of sustainability in the Middle East region.
+
+
Inspiration. I am drawn to Incubaid's approach to simplicity, every start up that has come through it's doors has resolved a complex solution in the tech space by following nature-based models. This not only results in better technology (less lines of code) but also generates a real world positive impact through energy efficiency for the planet.
+
+
+
At Play. I am a musician at heart and I have been creating music since i was first gifted a mini Casio keyboard by my parents at the age of 10. I think if I tried to upload all of my unpublished tracks it would break the internet :). I am drawn to music's ability to transcend all boundaries and I try to embody that mantra in my daily life."
+
+{% end %}
+
+{% row(style="center" margin="narrow" padding="bottom") %}
+
+
+
+
+{% end %}
+
+
\ No newline at end of file
diff --git a/content/restaurant/freeflowvalue/index.md b/content/restaurant/freeflowvalue/index.md
new file mode 100644
index 0000000..88eaa22
--- /dev/null
+++ b/content/restaurant/freeflowvalue/index.md
@@ -0,0 +1,101 @@
+---
+title: "FreeFlow Values"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
Independent of location, race or religion. Censorship should not block access to information. Cost of the information system needs to be low enough so that everyone can afford to participate.
Everyone can deliver services or products to everyone else with minimal intermediate steps. Intermediaries are often necessary but should charge fair costs in relation to their added value. It's not acceptable that a poor farmer receives only 5% of the price we pay for the product in the shop. This is neither sustainable for them nor for the planet.
+
+
+
+### 2. Respect
+
+
Respect We declare that respect and not fear nor ego will be the basis of our communications and our actions in this digital nation. We don’t have to agree, but respect and tolerance for other opinions is a must.
+
+
+
+### 3. Data Neutrality & Privacy
+
+
We have sole ownership of our created information / content (e.g. photos, text, videos). No one has access to our information unless we have given explicit access rights. We define the circles (groups of people) we want to communicate with and we have absolute freedom to decide what we want to share, and with whom we share it. We can at any point in time retrieve and destroy our information or revoke access rights.
+
+
Data cannot be manipulated and we can ask for verification of the information at any point in time, it's up to the person who shares to withhold that proof but at least we then know that the source wants to stay anonymous and cannot be validated.
+
+
+
It should be technically impossible for a hacker or other organization to change information and represent it in another way than originally intended.
+
+
+
We have the ability to search & consume information in freedom and neutrality. We don’t like that an AI (Artificial Intelligence) algorithm decides what information gets priority or is blocked. Today we navigate in a restricted information world, much smaller than we believe. Keeping us uninformed and manipulating the information which is being presented to us can influence our consumption and voting actions.
+
+
Censorship is not acceptable and goes against our beliefs; info should be accessible for everyone.
+
+
+
+### 4. Protecting our Planet
+
+
If we don’t want to be the product then we need to accept paying for what we consume.
If it's free, we are the product. Free does not exist. Often it means we pay in other ways at a price in excess of the cost of the resources we actually use. We need to be respectful of finite world resources.
Complementary currencies are not meant to replace existing currencies, but rather complement. They can have unique properties, they can be designed more as a store of value, or serve as a medium of exchange.
+
We need to be able to keep our fiat or digital currencies safe at all times. We need to be able to exchange value without having to pay huge transaction or exchange fees.
Others should not be able to influence or obtain non-transparent benefits from our transactions.
+
+
+
+### 6. Products that are Sustainable and Described Fairly
+
+
We declare that we want to produce high quality and sustainable products or services. We need the description of products and services to be done fairly. A transparent reputation system can help.
+
+
+
+### 7. Acceptance that we are not powerless and need to act ourselves
+
+
Many believe we have no choice and need to live in the current structures without a way to have an impact. We believe everyone should be a master of their own destiny. The current systems are huge and very efficient but that also makes them very vulnerable. If only 10 percent of us would change the buying decisions we make, these large companies would not be able to continue the way they currently work and change would come. These companies are more vulnerable than many believe.
We have to be responsible and look at the choices we can make ourselves – what do we eat, consume, how do we travel, & so on. This doesn’t mean we have no right to a financially comfortable life, but it means
We have to act and help heal the world.
+
+
+
+
+{% end %}
+
+
+
+{% row(style="center" margin="moderate" bgColor="#efefef" padding="none") %}
+
+
+
+## Want to learn more about FreeFlow?
+
+
+
+
+
+{% end %}
+
diff --git a/content/restaurant/img/.DS_Store b/content/restaurant/img/.DS_Store
new file mode 100644
index 0000000..5008ddf
Binary files /dev/null and b/content/restaurant/img/.DS_Store differ
diff --git a/content/restaurant/img/adnan.jpg b/content/restaurant/img/adnan.jpg
new file mode 100644
index 0000000..2e3e4fd
Binary files /dev/null and b/content/restaurant/img/adnan.jpg differ
diff --git a/content/restaurant/img/jan.jpg b/content/restaurant/img/jan.jpg
new file mode 100644
index 0000000..15f0073
Binary files /dev/null and b/content/restaurant/img/jan.jpg differ
diff --git a/content/restaurant/img/kds.jpg b/content/restaurant/img/kds.jpg
new file mode 100644
index 0000000..1c29d5c
Binary files /dev/null and b/content/restaurant/img/kds.jpg differ
diff --git a/content/restaurant/img/owen.jpg b/content/restaurant/img/owen.jpg
new file mode 100644
index 0000000..4fd3972
Binary files /dev/null and b/content/restaurant/img/owen.jpg differ
diff --git a/content/restaurant/img/peter.jpg b/content/restaurant/img/peter.jpg
new file mode 100644
index 0000000..07e2cdc
Binary files /dev/null and b/content/restaurant/img/peter.jpg differ
diff --git a/content/restaurant/index.md b/content/restaurant/index.md
new file mode 100644
index 0000000..785e1cf
--- /dev/null
+++ b/content/restaurant/index.md
@@ -0,0 +1,92 @@
+---
+title: "Restaurant"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 3
+---
+
+
+
+
+
+
+
+{% row(style="center" margin="header" padding="top") %}
+
+# Get to know us
+
+We may like tech, but where would we be without our people?
+
+{% end %}
+
+{% row(style="center" margin="moderate" padding="bottom") %}
+
+
+
+#### Kristof De Spiegeleer
+
+
At Work. Jan has been with Incubaid since the very beginning as head of research and development.
+
+
Jan’s field of expertise is not one but many. You could say he’s one of Kristof’s go-to guys when it comes to fixing anything networking related. There hasn’t been a datacenter in the Incubaid family that held secrets from Jan, and if they did he would find them and probably make even the secrets more efficient.
+
+
Currently Jan is Head of R&D at Incubaid and ThreeFold.tech.
+
+
+
At Play. Jan used to be a true daredevil. If he wasn’t driving his 1200 cc Ducati he would be climbing rock faces all over Europe. Although he still enjoys looking at these things he now chooses a more relaxing lifestyle. Cuddling his 14 kilogram cats, hanging out in his sauna, and practicing nerdy mindfulness by figuring out how to embed Rust code on tiny circuit boards.
+
+{% end %}
+
+{% row(style="center" margin="narrow" padding="bottom") %}
+
+
+
+
+{% end %}
+
+
\ No newline at end of file
diff --git a/content/restaurant/kds/img/kds1.jpg b/content/restaurant/kds/img/kds1.jpg
new file mode 100644
index 0000000..5e807e5
Binary files /dev/null and b/content/restaurant/kds/img/kds1.jpg differ
diff --git a/content/restaurant/kds/img/kds2.jpg b/content/restaurant/kds/img/kds2.jpg
new file mode 100644
index 0000000..dfa6a56
Binary files /dev/null and b/content/restaurant/kds/img/kds2.jpg differ
diff --git a/content/restaurant/kds/index.md b/content/restaurant/kds/index.md
new file mode 100644
index 0000000..ed4cf0d
--- /dev/null
+++ b/content/restaurant/kds/index.md
@@ -0,0 +1,63 @@
+---
+title: "Kristof De Spiegeleer"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
At Work. Kristof is a humanist & motivated entrepreneur, passionate about helping to make the world a better place.
+
+
Open source software that creates neutral, green and affordable internet capacity, by people, for people. 100% decentralized.
+
+
He has a history of inventing and developing new IT infrastructure systems (storage, automation, cloud computing). Kristof has founded more than 10 companies of which 6 have been acquired by large IT players. He was lucky to be part of the first teams building the Internet and has helped to grow datacenters & ISPs mainly in Europe.
+
+
Currently Kristof is CEO of Incubaid, as well as the ThreeFold Foundation, and ThreeFold Tech. He strongly believes there is need for a decentralized, neutral, affordable, green internet (owned by billions).
+
+
Spare time. Although very fond of being in front of his computer coding, in his spare time Kristof loves being outdoors. Hiking, sailing, kitesurfing, you name it, Kristof can do it (– some things better than the others, but he's always looking to grow). A business, a sport, whatever you throw at him, Kristof's reply will be, "Let's go."
+
+{% end %}
+
+{% row(style="center" margin="narrow" padding="bottom") %}
+
+
+
+
+{% end %}
+
+
+
diff --git a/content/restaurant/owen/img/owen1.jpg b/content/restaurant/owen/img/owen1.jpg
new file mode 100644
index 0000000..8933de5
Binary files /dev/null and b/content/restaurant/owen/img/owen1.jpg differ
diff --git a/content/restaurant/owen/img/owen2.jpg b/content/restaurant/owen/img/owen2.jpg
new file mode 100644
index 0000000..43a816a
Binary files /dev/null and b/content/restaurant/owen/img/owen2.jpg differ
diff --git a/content/restaurant/owen/index.md b/content/restaurant/owen/index.md
new file mode 100644
index 0000000..0960ade
--- /dev/null
+++ b/content/restaurant/owen/index.md
@@ -0,0 +1,67 @@
+---
+title: "Owen Kemp"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
At Work. AOwen 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.
+
+
Inspiration. n all walks of life, I look for an equitable exchange of value and believe in doing everything in a socially responsible way. I love working with diverse teams as they best represent our amazing planet. Emerging markets have been my passion and my profession. Once described as an optimist and anarchist, I love doing things in an unconventional way. All of this and more has led me to Incubaid.
+
+
+
At Play. Outside of work, you can find me outside – skiing (when the weather allows), biking, hiking, and gardening. I have been to 147 countries on last count, so one might say I like to travel.
+
+{% end %}
+
+{% row(style="center" margin="narrow" padding="bottom") %}
+
+
+
+
+{% end %}
+
+
\ No newline at end of file
diff --git a/content/restaurant/peter/img/peter1.jpg b/content/restaurant/peter/img/peter1.jpg
new file mode 100644
index 0000000..373448e
Binary files /dev/null and b/content/restaurant/peter/img/peter1.jpg differ
diff --git a/content/restaurant/peter/img/peter2.png b/content/restaurant/peter/img/peter2.png
new file mode 100644
index 0000000..c88fbad
Binary files /dev/null and b/content/restaurant/peter/img/peter2.png differ
diff --git a/content/restaurant/peter/index.md b/content/restaurant/peter/index.md
new file mode 100644
index 0000000..dc37725
--- /dev/null
+++ b/content/restaurant/peter/index.md
@@ -0,0 +1,59 @@
+---
+title: "Peter Van de Henst"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
At Work. As a Finance & HR manager, I am a leading support for all companies and for people working for these companies.
+
+
Inspiration. Since I am also supporting several starting companies from my own side-business (Idola Business Center) it's a logical step to help and guide start-ups from this incubator. Investing is the future where creating is core. The right people with the appropriate experience in this matter will help them grow. I am thrilled to share my experience with them for a better future.
+
+
+
At Play. I am addicted to football, fun and music. Even with my age, I am still an active football player. And to prepare for my future age, I am learning to play electric guitar so I can keep rocking the nation.
+
+{% end %}
+
+{% row(style="center" margin="narrow" padding="bottom") %}
+
+
+
+
+{% end %}
+
+
\ No newline at end of file
diff --git a/content/rooms/.DS_Store b/content/rooms/.DS_Store
new file mode 100644
index 0000000..f10092a
Binary files /dev/null and b/content/rooms/.DS_Store differ
diff --git a/content/rooms/img/wave_one.jpg b/content/rooms/img/wave_one.jpg
new file mode 100644
index 0000000..e33d954
Binary files /dev/null and b/content/rooms/img/wave_one.jpg differ
diff --git a/content/rooms/img/wave_two.jpg b/content/rooms/img/wave_two.jpg
new file mode 100644
index 0000000..4e931e6
Binary files /dev/null and b/content/rooms/img/wave_two.jpg differ
diff --git a/content/rooms/index.md b/content/rooms/index.md
new file mode 100644
index 0000000..182e50c
--- /dev/null
+++ b/content/rooms/index.md
@@ -0,0 +1,54 @@
+---
+title: "Rooms"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+
+
+
+
+{% row(style="center" margin="header" padding="top") %}
+
+# Projects
+
+Some insight into our portfolio and its evolution over the past 19 years.
+
+{% end %}
+
+{% row(style="" margin="narrow" padding="bottom") %}
+
+
+
+### Then: Wave One
+
+
More than $500 million in exits with less than $50 million investment.
Our focus during Wave One was very IT-centric – around storage, automation and cloud. During this wave from 2000 till 2015 some of our companies defined parts of the cloud landscape, and are still being used actively today.
We believe doing good for the world and doing business can go hand in hand. We are building companies which will help to achieve an ambituous global goal:
Allow everyone to have unlimited access to Education, Sustainable Internet, and Complementary Digital Currencies for less than 1% of their monthly salary.
To reach this goal the world needs next-generation technologies that open education, mobile, and financial systems up for all.
+
+
+
+{% end %}
+
+
+
diff --git a/content/rooms/waveone/img/Itsyou_online.jpg b/content/rooms/waveone/img/Itsyou_online.jpg
new file mode 100644
index 0000000..b0c3b16
Binary files /dev/null and b/content/rooms/waveone/img/Itsyou_online.jpg differ
diff --git a/content/rooms/waveone/img/amplidata.jpg b/content/rooms/waveone/img/amplidata.jpg
new file mode 100644
index 0000000..3a88500
Binary files /dev/null and b/content/rooms/waveone/img/amplidata.jpg differ
diff --git a/content/rooms/waveone/img/awingu.jpg b/content/rooms/waveone/img/awingu.jpg
new file mode 100644
index 0000000..c0b8c0d
Binary files /dev/null and b/content/rooms/waveone/img/awingu.jpg differ
diff --git a/content/rooms/waveone/img/dacentec.jpg b/content/rooms/waveone/img/dacentec.jpg
new file mode 100644
index 0000000..17ab38c
Binary files /dev/null and b/content/rooms/waveone/img/dacentec.jpg differ
diff --git a/content/rooms/waveone/img/datacenter.png b/content/rooms/waveone/img/datacenter.png
new file mode 100644
index 0000000..068aefa
Binary files /dev/null and b/content/rooms/waveone/img/datacenter.png differ
diff --git a/content/rooms/waveone/img/dedigate.jpg b/content/rooms/waveone/img/dedigate.jpg
new file mode 100644
index 0000000..bce5e23
Binary files /dev/null and b/content/rooms/waveone/img/dedigate.jpg differ
diff --git a/content/rooms/waveone/img/gig_tech.jpg b/content/rooms/waveone/img/gig_tech.jpg
new file mode 100644
index 0000000..af9e597
Binary files /dev/null and b/content/rooms/waveone/img/gig_tech.jpg differ
diff --git a/content/rooms/waveone/img/hostbasket.jpg b/content/rooms/waveone/img/hostbasket.jpg
new file mode 100644
index 0000000..64390a2
Binary files /dev/null and b/content/rooms/waveone/img/hostbasket.jpg differ
diff --git a/content/rooms/waveone/img/openVstorage.jpg b/content/rooms/waveone/img/openVstorage.jpg
new file mode 100644
index 0000000..d85cefc
Binary files /dev/null and b/content/rooms/waveone/img/openVstorage.jpg differ
diff --git a/content/rooms/waveone/img/q_layer.jpg b/content/rooms/waveone/img/q_layer.jpg
new file mode 100644
index 0000000..c18451f
Binary files /dev/null and b/content/rooms/waveone/img/q_layer.jpg differ
diff --git a/content/rooms/waveone/img/racktivity.jpg b/content/rooms/waveone/img/racktivity.jpg
new file mode 100644
index 0000000..115e219
Binary files /dev/null and b/content/rooms/waveone/img/racktivity.jpg differ
diff --git a/content/rooms/waveone/img/rivine.jpg b/content/rooms/waveone/img/rivine.jpg
new file mode 100644
index 0000000..366c14e
Binary files /dev/null and b/content/rooms/waveone/img/rivine.jpg differ
diff --git a/content/rooms/waveone/img/rogerthat.jpg b/content/rooms/waveone/img/rogerthat.jpg
new file mode 100644
index 0000000..b7bd5b1
Binary files /dev/null and b/content/rooms/waveone/img/rogerthat.jpg differ
diff --git a/content/rooms/waveone/img/virtualBox.jpg b/content/rooms/waveone/img/virtualBox.jpg
new file mode 100644
index 0000000..dfed459
Binary files /dev/null and b/content/rooms/waveone/img/virtualBox.jpg differ
diff --git a/content/rooms/waveone/img/wave_two.jpg b/content/rooms/waveone/img/wave_two.jpg
new file mode 100644
index 0000000..4e931e6
Binary files /dev/null and b/content/rooms/waveone/img/wave_two.jpg differ
diff --git a/content/rooms/waveone/index.md b/content/rooms/waveone/index.md
new file mode 100644
index 0000000..75a7f17
--- /dev/null
+++ b/content/rooms/waveone/index.md
@@ -0,0 +1,361 @@
+---
+title: "Wave One"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+**More than $500 million in exits with less than $50 million investment.**
+
+
Our focus during Wave One was very IT-centric – around storage, automation and cloud. During this wave from 2000 till 2015 some of our companies defined parts of the cloud landscape, and are still being used actively today.
+
+
Our team was involved in technologies like:
+
+##### - OpenStack
+
+##### - ZFS (the storage system)
+##### - The first data dedupe system for backup in the world
+##### - The first distributed storage system for large archive solutions
+##### - The most used hypervisor in the world
+
+{% end %}
+
+
+
+------------------------------------------------------
+
+
+
+{% row(style="" margin="narrow" padding="top") %}
+
+
+
+|||
+
+**2000 - Dedigate**
+
+
Dedigate was one of the first advanced hosting providers for complex projects in Europe. They focused on large projects where uptime was highly important, managing thousands of servers on a global scale. Their automation platform was quite novel at that time and allowed them to keep the operational team small while providing the best service level agreements.
Hostbasket was the largest hosting service provider in the Benelux. Around 2005, Hostbasket had more than 35.000 small and mid-sized business customers and was a pioneer in virtual private servers and the first cloud.
+
+
Hostbasket developed a unique automation platform which allowed them to efficiently manage all their customers with an operational support team of fewer than 10 people. They were also the inventors of one of the first web builder platforms in the world which the customers could use to quickly create their own web presence.
+
+
Hostbasket also developed the cloud platform for Telenet, which is still widely used with many Belgium small and mid-sized companies.
Still today Virtualbox is the most used hypervisor (virtual machine technology) in the world. At the time when Virtualbox was acquired, there were more than 1 million downloads a month.
+
+
Virtualbox was also the first hypervisor which could be used on all desktop platforms (Windows, Linux, OSX) and was 100% open source.
+
+
Virtualbox is the only company in wave one which we did not incubate. Incubaid helped Virtualbox with their strategy and to get acquired by SUN Microsystems.
DataCenter Technologies was the first company in the world inventing a data deduplication storage product for backup purposes. DCT could backup thousands of servers much more cost-effectively and faster than any other technology solution at that point.
+
+
DataCenter Technologies was Incubaid’s first storage software company, making storage systems in datacenters more efficient and scalable.
Q-layer was one of the first companies in the industry to create and end-to-end cloud automation product. Q-layer created and invented the virtual datacenter concept where complex IT resources were managed in what we called Virtual Datacenters at that time. Q-layer converged storage, virtualization, & networking in one stack.
Kristof founded Open vStorage back in 2008. OVS worked closely together with Amplidata and later GIG.tech.
+
+
Open vStorage is an ultra-reliable distributed block store for hyper performance storage workloads and has customers actively using it across the world.
+
+
Open vStorage is now an independent cash flow positive company operating from Lochristi.
Dacentec was Incubaid’s datacenter facility in North America. The facility was the one of the first energy-neutral datacenters in the world, powered by renewable energy. Operating a 23,000 square foot purpose-built data center in Lenoir, North Carolina, it offered a comprehensive suite of dedicated hosting, co-location, and technology-neutral green cloud data center services.
Amplidata was one of the first highly-scalable object storage systems in the world. Amplidata could fit petabytes of data in one rack in a datacenter and could do this at a cost a fraction of others. The software is ultra reliable and was used by major companies in the world to store their large archives.
+
Incubaid founded Racktivity with the goal to make datacenters eco-friendly and green.
+
+
Datacenters are globally massive consumers of electricity. Millions of servers are running without knowledge or insights in efficiency and power utilization. Racktivity has a portfolio of energy management systems for datacenter racks and individual servers, in which the uptime of the servers can also be remotely managed.
Mobile operators looking to provide more unified data services to their subscribers can benefit from the OneApp infrastructure to provide:
+
+
- mobile data cloud for storing personal information, pictures, videos, etc - mobile communication platform for community formation or subscriber marketing - mobile content cloud for premium content and delivery of content local to the subscriber
+
Awingu develops a software to simplify enterprise mobility and liberate legacy applications. Our software aggregates all company files and applications to one secure online workspace that can be accessed from any device or OS using any HTML5-based browser.
+
+
+
+{% end %}
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="none") %}
+
+**2015 - Itsyou.online**
+Itsyou.online is a web-based service using blockchain distributed ledger to keep track of online interaction in which you provide identity information. As a persona you can release only the necessary parts of identity information needed to complete an online transaction: e-commerce purchase, web registration, or contract signature.
+
+
+### Exit: 2016
+
+
Rivine was an open source project to create custom Proof Of Stake blockchains. This approach makes Rivine more scaleable and more secure compared to the standard. Rivine later became the basis of the ThreeFold Chain.
GIG delivers the first scalable and multi-tenant edge cloud solution that provides deployment automation and instant delivery of apps all over the world.
+
+
GIG was founded by Kristof as his first portfolio company, combining the strength of multiple Incubaid startups in 2015 and was at the foundation of an investment philosophy change. Not much later, Wave Two of investments followed.
+
+
GIG.tech is now an independent cash flow positive company operating from Lochristi.
+
+|||
+
+
+
+
+{% end %}
+
+
+
+
+
+-------------------------------------------
+
+{% row(style="" margin="narrow" padding="both") %}
+
+
+
+|||
+
+## Wave Two
+
+Companies and projects Incubaid is currently invested in through funding, time, resources, and emotion.
+
+
+
+
+
+{% end %}
+
\ No newline at end of file
diff --git a/content/rooms/wavetwo/bettertoken/img/bettertoken.png b/content/rooms/wavetwo/bettertoken/img/bettertoken.png
new file mode 100644
index 0000000..fa63689
Binary files /dev/null and b/content/rooms/wavetwo/bettertoken/img/bettertoken.png differ
diff --git a/content/rooms/wavetwo/bettertoken/img/cart.png b/content/rooms/wavetwo/bettertoken/img/cart.png
new file mode 100644
index 0000000..3ec0924
Binary files /dev/null and b/content/rooms/wavetwo/bettertoken/img/cart.png differ
diff --git a/content/rooms/wavetwo/bettertoken/img/customise.png b/content/rooms/wavetwo/bettertoken/img/customise.png
new file mode 100644
index 0000000..22e0233
Binary files /dev/null and b/content/rooms/wavetwo/bettertoken/img/customise.png differ
diff --git a/content/rooms/wavetwo/bettertoken/img/data.jpg b/content/rooms/wavetwo/bettertoken/img/data.jpg
new file mode 100644
index 0000000..6145855
Binary files /dev/null and b/content/rooms/wavetwo/bettertoken/img/data.jpg differ
diff --git a/content/rooms/wavetwo/bettertoken/img/easy.png b/content/rooms/wavetwo/bettertoken/img/easy.png
new file mode 100644
index 0000000..3bc992e
Binary files /dev/null and b/content/rooms/wavetwo/bettertoken/img/easy.png differ
diff --git a/content/rooms/wavetwo/bettertoken/index.md b/content/rooms/wavetwo/bettertoken/index.md
new file mode 100644
index 0000000..abfe91d
--- /dev/null
+++ b/content/rooms/wavetwo/bettertoken/index.md
@@ -0,0 +1,113 @@
+---
+title: "Better Token"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### Europe's First ThreeFold Farming Co-operative
+
+Start farming ThreeFold Tokens in an easy "plug & farm" way with one of our certified node servers.
+
+bettertoken.com
+
+
+{% end %}
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### The Problem
+
+
At the launch of the ThreeFold Grid a lot of people ventured into DIY farming, and with success as the grid has grown immensly. Still some people did not want to dive into installing their own farming equipment or building it from scratch.
+
+
+
+#### The BetterToken Solution
+
+
BetterToken has developed a easy way to start farming ThreeFold tokens. Customers can easily select a SoHo server and it's specification in the webshop. BetterToken makes sure this server then is 100% farming ready all the customer needs to do is plug in the ethernet cable and powercable to start farming ThreeFold Tokens. Upside to farming with BetterToken Soho-Nodes is that all equipment is certified by ThreeFold and this makes that cultivation tokens are released sooner than tokens cultivated on DIY Farms.
Plug and Farm NodeServers make it possible for all tech levels to jump in. We aim to make it possible for you to invest in the grid, plug in your server, and get it working in minutes. No long difficult procedures.
+
+
+|||
+
+
+
+### OPEN TO ALL BUDGETS
+
+
+
BetterToken provides Nodeservers varying from 1K – 20k+. The range consists of ultra-silent home devices to rack-mountable 2U devices to run in your (local) datacenter.
+
Use the Node Server configurator in our ServerShop to configure exactly the server you want. You can choose from our range of ThreeFold Certified Hardware to create any server from a home office quiet running server to a fully loaded compute engine or hundreds of terabytes of storage.
+
diff --git a/content/rooms/wavetwo/fairswap/img/fairswap.png b/content/rooms/wavetwo/fairswap/img/fairswap.png
new file mode 100644
index 0000000..3162b4f
Binary files /dev/null and b/content/rooms/wavetwo/fairswap/img/fairswap.png differ
diff --git a/content/rooms/wavetwo/fairswap/img/swapimage.png b/content/rooms/wavetwo/fairswap/img/swapimage.png
new file mode 100644
index 0000000..499e97c
Binary files /dev/null and b/content/rooms/wavetwo/fairswap/img/swapimage.png differ
diff --git a/content/rooms/wavetwo/fairswap/index.md b/content/rooms/wavetwo/fairswap/index.md
new file mode 100644
index 0000000..54f1948
--- /dev/null
+++ b/content/rooms/wavetwo/fairswap/index.md
@@ -0,0 +1,77 @@
+---
+title: "Fairswap"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### Bringing fairness, security and scalability to digital commerce.
+
+FairSwap is an open-source, decentralized project complete with wallet, exchange and P2P marketplace, protecting users and enabling true, trusted transacting globally.
+
+
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### The Problem
+
+
We don’t need third-parties in digital commerce — yet they keep growing. And getting more dangerous.
+
+
No sovereignty or control : Centralized exchanges and wallets have custody of funds and require middlemen
+
+
Huge security and data privacy issues : Large exchanges are easy targets for hacks with little recourse or protection
+
+
Market manipulation and no transparency : Fake volumes and market-making, algorithmic trading
+
+
Complexity and lack of information : Hard to navigate exchanges, manage private keys, make informed decisions
+
+
Not enough interoperability : Existing platforms seek to lock in users to their own ecosystems
+
+
+
+#### Solution & Mission
+
+
Open-source, peer-to-peer financial tools that are quantum-safe and built on decentralized capacity
+
+
+
+
Scaleable. Lightweight technology and self-healing technology makes it scale with ease and endlessly.
Storage, exchange and trade operations are the foundation of the economic machine. We believe that everyone has right to access free and open instruments that enable storage, exchange and trade in a fair and transparent way.
+
+We believe doing good for the world and doing business can go hand in hand. We are building companies which will help to achieve an ambituous global goal:
+
+**Allow everyone to have unlimited access to Education, Sustainable Internet, and Complementary Digital Currencies for less than 1% of their monthly salary.**
+
+To reach this goal the world needs next-generation technologies that open education, mobile, and financial systems up for all.
+
+
+
+{% end %}
+
+
+
+
+
+------------------------------------------------------
+
+
+
+
+
+{% row(style="" margin="narrow" padding="none") %}
+
+
+
+
Powering the Information Technology workloads of tomorrow through Self-Driving IT.
an open-source, decentralized project complete with wallet, exchange and P2P marketplace, protecting users and enabling true, trusted transacting globally.
An educational platform that offers practical knowledge to everyone in the world for free.
+
+|||
+
+|||
+
+
+{% end %}
+
+
+
+
+
+
+
+{% row(style="center" margin="tight" padding="both") %}
+
+
+
+
+
+Each of our companies believes in doing good for the world and operates with the values laid about by freeflownation.org
+
+
+
+
+
+
+{% end %}
+
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### A farming cooperative that supports the growth of the Threefold Grid
+
+Support the grid by buying capacity units, hosting P2P nodes or deploying workloads.
+
+mazraa.io
+
+
+{% end %}
+
+
+
+
+
+
+
+{% row(style="center" margin="tight" padding="none") %}
+
+
+
+
Mazraa is an independent Farming Cooperative based in Dubai UAE. It runs a hosting farm of +120 servers. They are amongst the first farmers on the ThreeFold Grid and farm tokens on a monthly basis. It is a founding capacity farmer on the ThreeFold Network and actively supports the expansion and adoption of ThreeFold's P2P Cloud. Mazraa's focus is to provide P2P Cloud capacity for developers, nodes for new and existing farmers, as well as, providing over the counter access to TFT's to enable reservations of Internet capacity.
Purchasing ThreeFold Tokens (TFT) enables users to access and reserve P2P cloud capacity on the ThreeFold Grid. A unit of TFT is utilized to reserve capacity in the form of either; SU Storage Units, NU Network Units and CU Compute Units.
+
+|||
+
+
+### P2P Nodes
+
+
Become a digital "Farmer" on the ThreeFold Network by hosting P2P capacity nodes, which produces the most efficient, accessible and decentralized IT capacity. Our nodes enable capacity providers to earn by hosting the expansion of the internet.
+
+|||
+
+
+### Deploy Workloads
+
+
If you are a developer or enterprise interested running cloud work loads on TheeFold's P2P Cloud capacity, please send mazraa an email with a request for capacity access and we will be happy to get you started or visit cloud.threefold.io
+
diff --git a/content/rooms/wavetwo/ootopia/img/impact.png b/content/rooms/wavetwo/ootopia/img/impact.png
new file mode 100644
index 0000000..af915ee
Binary files /dev/null and b/content/rooms/wavetwo/ootopia/img/impact.png differ
diff --git a/content/rooms/wavetwo/ootopia/img/ootopia.png b/content/rooms/wavetwo/ootopia/img/ootopia.png
new file mode 100644
index 0000000..6c16d45
Binary files /dev/null and b/content/rooms/wavetwo/ootopia/img/ootopia.png differ
diff --git a/content/rooms/wavetwo/ootopia/index.md b/content/rooms/wavetwo/ootopia/index.md
new file mode 100644
index 0000000..439881a
--- /dev/null
+++ b/content/rooms/wavetwo/ootopia/index.md
@@ -0,0 +1,61 @@
+---
+title: "Ootopia"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### The most exciting way to engage on the planet regeneration
+
+Ootopia app combines super inspiring social media and microlearning in an exciting game where users are rewarded for their engagement with the impact token OOz.
+
+ootopia.org
+
+
+{% end %}
+
+
+
+
+
+
+
+{% row(style="center" margin="narrow" padding="none") %}
+
+
+
+
OOTOPIA is a platform for leveraging the regeneration of the planet where everyone wins. Get inspired by a social feed abundant in examples and stories about the regenerative world we all want to live in. Access video lessons on how to have a much more sustainable lifestyle and how to include regenerative actions in your daily life. Then, as a reward for your engagement, receive credits in OOz, a social currency that feeds the OOTOPIA Ethical Marketplace leveraging the regenerative economy.
+
diff --git a/content/rooms/wavetwo/ourverse/img/ourverse_header.png b/content/rooms/wavetwo/ourverse/img/ourverse_header.png
new file mode 100644
index 0000000..da7ea8b
Binary files /dev/null and b/content/rooms/wavetwo/ourverse/img/ourverse_header.png differ
diff --git a/content/rooms/wavetwo/ourverse/img/ourverses.png b/content/rooms/wavetwo/ourverse/img/ourverses.png
new file mode 100644
index 0000000..e93ca78
Binary files /dev/null and b/content/rooms/wavetwo/ourverse/img/ourverses.png differ
diff --git a/content/rooms/wavetwo/ourverse/index.md b/content/rooms/wavetwo/ourverse/index.md
new file mode 100644
index 0000000..9afbf87
--- /dev/null
+++ b/content/rooms/wavetwo/ourverse/index.md
@@ -0,0 +1,59 @@
+---
+title: "OurVerse"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### The world is your oyster
+
+Learn whatever your heart desires. Access any oppurtunity to earn. Enter any shop. Travel everywhere. In OurVerse, you are limited by only your own imagination.
+
+ourverse.tf
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### A metaverse focused on abundance and accessibility
+
+
OurVerse aims to provide a safe and inclusive digital environment where communities can come together for experiences ranging from meetings to virtual museum tours and exhibitions. An abundance of educational content can help communities around the world access information and opportunities that they would not have been able to otherwise.
+
+
+
It is created by utilizing the world’s largest decentralized and peer-to-peer of storage and compute: The ThreeFold Grid. This provides every OurVerse community with unparalleled security to each user and assures unprecedented sovereignty.
+
diff --git a/content/rooms/wavetwo/ourworld/img/ourworld.png b/content/rooms/wavetwo/ourworld/img/ourworld.png
new file mode 100644
index 0000000..cb317ad
Binary files /dev/null and b/content/rooms/wavetwo/ourworld/img/ourworld.png differ
diff --git a/content/rooms/wavetwo/ourworld/img/ourworldheader.png b/content/rooms/wavetwo/ourworld/img/ourworldheader.png
new file mode 100644
index 0000000..fc5d7f6
Binary files /dev/null and b/content/rooms/wavetwo/ourworld/img/ourworldheader.png differ
diff --git a/content/rooms/wavetwo/ourworld/index.md b/content/rooms/wavetwo/ourworld/index.md
new file mode 100644
index 0000000..c9cae73
--- /dev/null
+++ b/content/rooms/wavetwo/ourworld/index.md
@@ -0,0 +1,67 @@
+---
+title: "OurWorld"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### An abundance based internet of internets system
+
+Discover a sovereign, secure and regenerative Internet infrastructure that is revolutionary in every way. With the greatest efficiency, scalability and autonomy yet, it is a system created to empower communities to push the limits of what is possible in a decentralized world.
+
+ourworld.tf
+
+
+{% end %}
+
+
+
+
+
+
+
+{% row(style="center" margin="narrow" padding="none") %}
+
+
+
+
+
+
+
+
+
+
+
+
Our beautiful world has become a crazy place with lots of changes. Do you want to be part of a movement which is making real change and which has a purpose to resolve some of the biggest issues in the world? OurWorld is a grounded movement, actions first with a practical executable plan and all required tools. OurWorld practices are regenerative, spiritual and high tech.
+
diff --git a/content/rooms/wavetwo/sikana/img/kid_learning.jpg b/content/rooms/wavetwo/sikana/img/kid_learning.jpg
new file mode 100644
index 0000000..b70e752
Binary files /dev/null and b/content/rooms/wavetwo/sikana/img/kid_learning.jpg differ
diff --git a/content/rooms/wavetwo/sikana/img/sikana.png b/content/rooms/wavetwo/sikana/img/sikana.png
new file mode 100644
index 0000000..6cbbc90
Binary files /dev/null and b/content/rooms/wavetwo/sikana/img/sikana.png differ
diff --git a/content/rooms/wavetwo/sikana/index.md b/content/rooms/wavetwo/sikana/index.md
new file mode 100644
index 0000000..cea0004
--- /dev/null
+++ b/content/rooms/wavetwo/sikana/index.md
@@ -0,0 +1,62 @@
+---
+title: "Sikana"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### A non profit organization that aims to equip people with practical skills through free educational video programs.
+
+Sikana's mission is to expand access to practical education through free instructional and awareness programs co-created by the community.
+
+sikana.tv/en
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### The Problem
+
+
Billions of people do not have folks or teachers to help them acquire basic skills, unlock their potential and lead happy and dignified lives.
+
+
+
+#### The Sikana Solution
+
+
3 billion people have access to screens and our goal is to transform them into tools for instruction. Video is a powerful and cost-effective medium to promote skill acquisition and health and environmental awareness.
+
diff --git a/content/rooms/wavetwo/tag/img/server.jpg b/content/rooms/wavetwo/tag/img/server.jpg
new file mode 100644
index 0000000..833a4d7
Binary files /dev/null and b/content/rooms/wavetwo/tag/img/server.jpg differ
diff --git a/content/rooms/wavetwo/tag/img/tag-planting.jpg b/content/rooms/wavetwo/tag/img/tag-planting.jpg
new file mode 100644
index 0000000..121557d
Binary files /dev/null and b/content/rooms/wavetwo/tag/img/tag-planting.jpg differ
diff --git a/content/rooms/wavetwo/tag/img/tag.png b/content/rooms/wavetwo/tag/img/tag.png
new file mode 100644
index 0000000..9a80492
Binary files /dev/null and b/content/rooms/wavetwo/tag/img/tag.png differ
diff --git a/content/rooms/wavetwo/tag/index.md b/content/rooms/wavetwo/tag/index.md
new file mode 100644
index 0000000..f386d79
--- /dev/null
+++ b/content/rooms/wavetwo/tag/index.md
@@ -0,0 +1,61 @@
+---
+title: "Tag"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### Every child deserves an education. Inspire change. Take action.
+
+ETake Action Global is committed to creating space for teachers and students to work at local and global levels for the betterment of humanity for today and for tomorrow.
+
+takeactionglobal.org
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### Mission
+
+
To inspire change by providing opportunities for students around the world to take action on social good causes through education. TAG aims to find ways to connect thousands of teachers with students around the world to provide free, quality, meaningful education.
+
+
+#### Method
+
+
TAG wants to raise the bar of education by having experts to teach the students and by initiating teacher training with help of technology. For years they have been working to bring positive and needed change to the education system and this is another step forward. A peer-to-peer education system opens up the possibilities for learning and positive solutions for our world. The peer-to-peer platform will run on the ThreeFold Grid and will utilize elements of Digital Twin technology. The Video Chat solution will be used to allow teachers to teach refugees. They have already been doing this for five years with Project Kakuma.
+
diff --git a/content/rooms/wavetwo/tft/img/server.jpg b/content/rooms/wavetwo/tft/img/server.jpg
new file mode 100644
index 0000000..833a4d7
Binary files /dev/null and b/content/rooms/wavetwo/tft/img/server.jpg differ
diff --git a/content/rooms/wavetwo/tft/img/tft.png b/content/rooms/wavetwo/tft/img/tft.png
new file mode 100644
index 0000000..69fa396
Binary files /dev/null and b/content/rooms/wavetwo/tft/img/tft.png differ
diff --git a/content/rooms/wavetwo/tft/index.md b/content/rooms/wavetwo/tft/index.md
new file mode 100644
index 0000000..2aaebfc
--- /dev/null
+++ b/content/rooms/wavetwo/tft/index.md
@@ -0,0 +1,81 @@
+---
+title: "ThreeFold"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### A True Peer-To-Peer Internet
+
+Empowering equality, autonomy and sustainability with game-changing technology built with a collaborative ecosystem.
+Live and distributed in 21 countries and expanding.
+
+ThreeFold.io
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### The Problem
+
+
There are some major challenges with the current foundation of the internet and how it has moved from being a medium to independently share information amongst internet users, to a multi-billion dollar industry governed by a few companies.
The technology that generates internet capacity, services and applications is expensive, power hungry and centralized, as a result, it's not inclusive, affordable, sustainable or scalable.
+
80% of today’s internet capacity is centralized. Data is monopolized and controlled by a few. Your information is not private.
+
+
+
+#### The ThreeFold Foundation Solution
+
+
A decentralized grid of internet compute & capacity focused on democratizing internet compute and storage capacity to enable a responsible internet for all.
+
+
Neutral. No one single company or person can ever monopolize the Threefold Grid due to decentralization.
+
+
Scaleable. Lightweight technology and self-healing technology makes it scale with ease and endlessly.
+
+
Blockchain Enabled. Tokens are created only when capacity is added to the grid. Also doubles as payment mechanism to provision workloads.
+
+
Future Workloads The decentralized nature of the grid makes it very compatible with IOT, 5G, and other workloads of the future.
+
diff --git a/content/rooms/wavetwo/tftech/img/3bot.jpg b/content/rooms/wavetwo/tftech/img/3bot.jpg
new file mode 100644
index 0000000..519602b
Binary files /dev/null and b/content/rooms/wavetwo/tftech/img/3bot.jpg differ
diff --git a/content/rooms/wavetwo/tftech/img/encrypted.svg b/content/rooms/wavetwo/tftech/img/encrypted.svg
new file mode 100644
index 0000000..355a855
--- /dev/null
+++ b/content/rooms/wavetwo/tftech/img/encrypted.svg
@@ -0,0 +1,24 @@
+
+
diff --git a/content/rooms/wavetwo/tftech/img/endless.jpg b/content/rooms/wavetwo/tftech/img/endless.jpg
new file mode 100644
index 0000000..652a5e1
Binary files /dev/null and b/content/rooms/wavetwo/tftech/img/endless.jpg differ
diff --git a/content/rooms/wavetwo/tftech/img/speedometer.svg b/content/rooms/wavetwo/tftech/img/speedometer.svg
new file mode 100644
index 0000000..ef2c86e
--- /dev/null
+++ b/content/rooms/wavetwo/tftech/img/speedometer.svg
@@ -0,0 +1,2 @@
+
+
diff --git a/content/rooms/wavetwo/tftech/img/tftech.png b/content/rooms/wavetwo/tftech/img/tftech.png
new file mode 100644
index 0000000..47076a8
Binary files /dev/null and b/content/rooms/wavetwo/tftech/img/tftech.png differ
diff --git a/content/rooms/wavetwo/tftech/img/uptime-1.svg b/content/rooms/wavetwo/tftech/img/uptime-1.svg
new file mode 100644
index 0000000..943277a
--- /dev/null
+++ b/content/rooms/wavetwo/tftech/img/uptime-1.svg
@@ -0,0 +1,20 @@
+
+
diff --git a/content/rooms/wavetwo/tftech/index.md b/content/rooms/wavetwo/tftech/index.md
new file mode 100644
index 0000000..4013553
--- /dev/null
+++ b/content/rooms/wavetwo/tftech/index.md
@@ -0,0 +1,107 @@
+---
+title: "ThreeFold Tech"
+description: ""
+date: 2018-09-14
+updated: 2021-02-20
+draft: false
+weight: 2
+---
+
+
+
+{% row(style="" margin="header" padding="top") %}
+
+
+
+|||
+
+### Self-Driving IT
+
+Powering the Information Technology workloads of tomorrow.
+
+ThreeFold Tech
+
+
+{% end %}
+
+
+
+
+
+
+
+
+{% row(style="reverse" margin="narrow" padding="bottom") %}
+
+#### The Problem
+
+
Large, centralized datacenters are owned by just a few companies. They are only located in star topologies and energy-dense areas, and they are power-hungry.
The approach of adding more – people and layers – to achieve security is flawed.
+
With the demand for IT capacity growing tremendously, these methods are not build for the future. There are enough issues today.
+
+
+
+
+#### The ThreeFold Tech Solution
+
+
Self-Driving IT. A decentralized peer-to-peer system inspired by nature.
If you are looking for a one of a kind experience in Zanzibar, look no further... At Jungle Paradise Beach Resort & SPA, you will fall in love with the stunning views and unique history.
+
Jungle Paradise Beach Resort & Spa @ Mbweni Ruins Zanzibar is your ideal choice, if you want to see and enjoy a unique place in Zanzibar Urban West. It's well-known for their historical Mbweni ruins, which took part in the ending of slavery in Zanzibar in the 1870s. Jungle Paradise is surrounded by a beautiful botanic garden which supports over 280 different kinds of tree species.
+
Jungle paradise Beach Resort and SPA Zanzibar features 13 exclusive and cozy, air-conditioned beachfront Suites with a very high service standard. Each room provides a beautiful ocean-view, a private bathroom, Wi-Fi, a mini bar fridge and a balcony faced to the ocean, beach and pool area.
If you are looking for a one of a kind experience in Zanzibar, look no further... At Jungle Paradise Beach Resort & SPA, you will fall in love with the stunning views and unique history.
+
Jungle Paradise Beach Resort & Spa @ Mbweni Ruins Zanzibar is your ideal choice, if you want to see and enjoy a unique place in Zanzibar Urban West. It's well-known for their historical Mbweni ruins, which took part in the ending of slavery in Zanzibar in the 1870s. Jungle Paradise is surrounded by a beautiful botanic garden which supports over 280 different kinds of tree species.
+
Jungle paradise Beach Resort and SPA Zanzibar features 13 exclusive and cozy, air-conditioned beachfront Suites with a very high service standard. Each room provides a beautiful ocean-view, a private bathroom, Wi-Fi, a mini bar fridge and a balcony faced to the ocean, beach and pool area.
At Work. Adnan is a multidisciplinary and multi lingual entrepreneur with a successful track record in the software and infrastructure space. He is drawn towards projects and startups with amplified positive impact and is focused on tech companies that are ethically and compassionately driven. Today, he is a part of a diverse team of innovators trying to redefine the internet’s inclusivity through autonomous capabilities. At Incubaid, Adnan coordinates a spin-off, sister, tech incubator called ATWGreen which is focused on empowering startups in the field of sustainability in the Middle East region.
+
Inspiration. I am drawn to Incubaid's approach to simplicity, every start up that has come through it's doors has resolved a complex solution in the tech space by following nature-based models. This not only results in better technology (less lines of code) but also generates a real world positive impact through energy efficiency for the planet.
+
At Play. I am a musician at heart and I have been creating music since i was first gifted a mini Casio keyboard by my parents at the age of 10. I think if I tried to upload all of my unpublished tracks it would break the internet :). I am drawn to music's ability to transcend all boundaries and I try to embody that mantra in my daily life."
Independent of location, race or religion. Censorship should not block access to information. Cost of the information system needs to be low enough so that everyone can afford to participate.
Everyone can deliver services or products to everyone else with minimal intermediate steps. Intermediaries are often necessary but should charge fair costs in relation to their added value. It's not acceptable that a poor farmer receives only 5% of the price we pay for the product in the shop. This is neither sustainable for them nor for the planet.
+
+
2. Respect
+
Respect We declare that respect and not fear nor ego will be the basis of our communications and our actions in this digital nation. We don’t have to agree, but respect and tolerance for other opinions is a must.
+
+
3. Data Neutrality & Privacy
+
We have sole ownership of our created information / content (e.g. photos, text, videos). No one has access to our information unless we have given explicit access rights. We define the circles (groups of people) we want to communicate with and we have absolute freedom to decide what we want to share, and with whom we share it. We can at any point in time retrieve and destroy our information or revoke access rights.
+
Data cannot be manipulated and we can ask for verification of the information at any point in time, it's up to the person who shares to withhold that proof but at least we then know that the source wants to stay anonymous and cannot be validated.
+
+
It should be technically impossible for a hacker or other organization to change information and represent it in another way than originally intended.
+
+
We have the ability to search & consume information in freedom and neutrality. We don’t like that an AI (Artificial Intelligence) algorithm decides what information gets priority or is blocked. Today we navigate in a restricted information world, much smaller than we believe. Keeping us uninformed and manipulating the information which is being presented to us can influence our consumption and voting actions.
+
Censorship is not acceptable and goes against our beliefs; info should be accessible for everyone.
+
+
4. Protecting our Planet
+
If we don’t want to be the product then we need to accept paying for what we consume.
If it's free, we are the product. Free does not exist. Often it means we pay in other ways at a price in excess of the cost of the resources we actually use. We need to be respectful of finite world resources.
+
+
5. Access to Reliable Complementary Currencies
+
Complementary currencies are not meant to replace existing currencies, but rather complement. They can have unique properties, they can be designed more as a store of value, or serve as a medium of exchange.
+
We need to be able to keep our fiat or digital currencies safe at all times. We need to be able to exchange value without having to pay huge transaction or exchange fees.
Others should not be able to influence or obtain non-transparent benefits from our transactions.
+
+
6. Products that are Sustainable and Described Fairly
+
We declare that we want to produce high quality and sustainable products or services. We need the description of products and services to be done fairly. A transparent reputation system can help.
+
+
7. Acceptance that we are not powerless and need to act ourselves
+
Many believe we have no choice and need to live in the current structures without a way to have an impact. We believe everyone should be a master of their own destiny. The current systems are huge and very efficient but that also makes them very vulnerable. If only 10 percent of us would change the buying decisions we make, these large companies would not be able to continue the way they currently work and change would come. These companies are more vulnerable than many believe.
We have to be responsible and look at the choices we can make ourselves – what do we eat, consume, how do we travel, & so on. This doesn’t mean we have no right to a financially comfortable life, but it means
At Work. Jan has been with Incubaid since the very beginning as head of research and development.
+
Jan’s field of expertise is not one but many. You could say he’s one of Kristof’s go-to guys when it comes to fixing anything networking related. There hasn’t been a datacenter in the Incubaid family that held secrets from Jan, and if they did he would find them and probably make even the secrets more efficient.
+
Currently Jan is Head of R&D at Incubaid and ThreeFold.tech.
+
At Play. Jan used to be a true daredevil. If he wasn’t driving his 1200 cc Ducati he would be climbing rock faces all over Europe. Although he still enjoys looking at these things he now chooses a more relaxing lifestyle. Cuddling his 14 kilogram cats, hanging out in his sauna, and practicing nerdy mindfulness by figuring out how to embed Rust code on tiny circuit boards.
At Work. Kristof is a humanist & motivated entrepreneur, passionate about helping to make the world a better place.
+
Open source software that creates neutral, green and affordable internet capacity, by people, for people. 100% decentralized.
+
He has a history of inventing and developing new IT infrastructure systems (storage, automation, cloud computing). Kristof has founded more than 10 companies of which 6 have been acquired by large IT players. He was lucky to be part of the first teams building the Internet and has helped to grow datacenters & ISPs mainly in Europe.
+
Currently Kristof is CEO of Incubaid, as well as the ThreeFold Foundation, and ThreeFold Tech. He strongly believes there is need for a decentralized, neutral, affordable, green internet (owned by billions).
+
Spare time. Although very fond of being in front of his computer coding, in his spare time Kristof loves being outdoors. Hiking, sailing, kitesurfing, you name it, Kristof can do it (– some things better than the others, but he's always looking to grow). A business, a sport, whatever you throw at him, Kristof's reply will be, "Let's go."
At Work. AOwen 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.
+
Inspiration. n all walks of life, I look for an equitable exchange of value and believe in doing everything in a socially responsible way. I love working with diverse teams as they best represent our amazing planet. Emerging markets have been my passion and my profession. Once described as an optimist and anarchist, I love doing things in an unconventional way. All of this and more has led me to Incubaid.
+
At Play. Outside of work, you can find me outside – skiing (when the weather allows), biking, hiking, and gardening. I have been to 147 countries on last count, so one might say I like to travel.
At Work. As a Finance & HR manager, I am a leading support for all companies and for people working for these companies.
+
Inspiration. Since I am also supporting several starting companies from my own side-business (Idola Business Center) it's a logical step to help and guide start-ups from this incubator. Investing is the future where creating is core. The right people with the appropriate experience in this matter will help them grow. I am thrilled to share my experience with them for a better future.
+
At Play. I am addicted to football, fun and music. Even with my age, I am still an active football player. And to prepare for my future age, I am learning to play electric guitar so I can keep rocking the nation.
More than $500 million in exits with less than $50 million investment.
Our focus during Wave One was very IT-centric – around storage, automation and cloud. During this wave from 2000 till 2015 some of our companies defined parts of the cloud landscape, and are still being used actively today.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Now: Wave Two
+
We believe doing good for the world and doing business can go hand in hand. We are building companies which will help to achieve an ambituous global goal:
Allow everyone to have unlimited access to Education, Sustainable Internet, and Complementary Digital Currencies for less than 1% of their monthly salary.
To reach this goal the world needs next-generation technologies that open education, mobile, and financial systems up for all.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/rooms/waveone/img/Itsyou_online.jpg b/public/rooms/waveone/img/Itsyou_online.jpg
new file mode 100644
index 0000000..b0c3b16
Binary files /dev/null and b/public/rooms/waveone/img/Itsyou_online.jpg differ
diff --git a/public/rooms/waveone/img/amplidata.jpg b/public/rooms/waveone/img/amplidata.jpg
new file mode 100644
index 0000000..3a88500
Binary files /dev/null and b/public/rooms/waveone/img/amplidata.jpg differ
diff --git a/public/rooms/waveone/img/awingu.jpg b/public/rooms/waveone/img/awingu.jpg
new file mode 100644
index 0000000..c0b8c0d
Binary files /dev/null and b/public/rooms/waveone/img/awingu.jpg differ
diff --git a/public/rooms/waveone/img/dacentec.jpg b/public/rooms/waveone/img/dacentec.jpg
new file mode 100644
index 0000000..17ab38c
Binary files /dev/null and b/public/rooms/waveone/img/dacentec.jpg differ
diff --git a/public/rooms/waveone/img/datacenter.png b/public/rooms/waveone/img/datacenter.png
new file mode 100644
index 0000000..068aefa
Binary files /dev/null and b/public/rooms/waveone/img/datacenter.png differ
diff --git a/public/rooms/waveone/img/dedigate.jpg b/public/rooms/waveone/img/dedigate.jpg
new file mode 100644
index 0000000..bce5e23
Binary files /dev/null and b/public/rooms/waveone/img/dedigate.jpg differ
diff --git a/public/rooms/waveone/img/gig_tech.jpg b/public/rooms/waveone/img/gig_tech.jpg
new file mode 100644
index 0000000..af9e597
Binary files /dev/null and b/public/rooms/waveone/img/gig_tech.jpg differ
diff --git a/public/rooms/waveone/img/hostbasket.jpg b/public/rooms/waveone/img/hostbasket.jpg
new file mode 100644
index 0000000..64390a2
Binary files /dev/null and b/public/rooms/waveone/img/hostbasket.jpg differ
diff --git a/public/rooms/waveone/img/openVstorage.jpg b/public/rooms/waveone/img/openVstorage.jpg
new file mode 100644
index 0000000..d85cefc
Binary files /dev/null and b/public/rooms/waveone/img/openVstorage.jpg differ
diff --git a/public/rooms/waveone/img/q_layer.jpg b/public/rooms/waveone/img/q_layer.jpg
new file mode 100644
index 0000000..c18451f
Binary files /dev/null and b/public/rooms/waveone/img/q_layer.jpg differ
diff --git a/public/rooms/waveone/img/racktivity.jpg b/public/rooms/waveone/img/racktivity.jpg
new file mode 100644
index 0000000..115e219
Binary files /dev/null and b/public/rooms/waveone/img/racktivity.jpg differ
diff --git a/public/rooms/waveone/img/rivine.jpg b/public/rooms/waveone/img/rivine.jpg
new file mode 100644
index 0000000..366c14e
Binary files /dev/null and b/public/rooms/waveone/img/rivine.jpg differ
diff --git a/public/rooms/waveone/img/rogerthat.jpg b/public/rooms/waveone/img/rogerthat.jpg
new file mode 100644
index 0000000..b7bd5b1
Binary files /dev/null and b/public/rooms/waveone/img/rogerthat.jpg differ
diff --git a/public/rooms/waveone/img/virtualBox.jpg b/public/rooms/waveone/img/virtualBox.jpg
new file mode 100644
index 0000000..dfed459
Binary files /dev/null and b/public/rooms/waveone/img/virtualBox.jpg differ
diff --git a/public/rooms/waveone/img/wave_two.jpg b/public/rooms/waveone/img/wave_two.jpg
new file mode 100644
index 0000000..4e931e6
Binary files /dev/null and b/public/rooms/waveone/img/wave_two.jpg differ
diff --git a/public/rooms/waveone/index.html b/public/rooms/waveone/index.html
new file mode 100644
index 0000000..aa8214e
--- /dev/null
+++ b/public/rooms/waveone/index.html
@@ -0,0 +1,2579 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Wave One • Jungle Paradise
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
More than $500 million in exits with less than $50 million investment.
+
Our focus during Wave One was very IT-centric – around storage, automation and cloud. During this wave from 2000 till 2015 some of our companies defined parts of the cloud landscape, and are still being used actively today.
+
Our team was involved in technologies like:
+
- OpenStack
+
- ZFS (the storage system)
+
- The first data dedupe system for backup in the world
+
- The first distributed storage system for large archive solutions
Dedigate was one of the first advanced hosting providers for complex projects in Europe. They focused on large projects where uptime was highly important, managing thousands of servers on a global scale. Their automation platform was quite novel at that time and allowed them to keep the operational team small while providing the best service level agreements.
Hostbasket was the largest hosting service provider in the Benelux. Around 2005, Hostbasket had more than 35.000 small and mid-sized business customers and was a pioneer in virtual private servers and the first cloud.
+
Hostbasket developed a unique automation platform which allowed them to efficiently manage all their customers with an operational support team of fewer than 10 people. They were also the inventors of one of the first web builder platforms in the world which the customers could use to quickly create their own web presence.
+
Hostbasket also developed the cloud platform for Telenet, which is still widely used with many Belgium small and mid-sized companies.
Still today Virtualbox is the most used hypervisor (virtual machine technology) in the world. At the time when Virtualbox was acquired, there were more than 1 million downloads a month.
+
Virtualbox was also the first hypervisor which could be used on all desktop platforms (Windows, Linux, OSX) and was 100% open source.
+
Virtualbox is the only company in wave one which we did not incubate. Incubaid helped Virtualbox with their strategy and to get acquired by SUN Microsystems.
DataCenter Technologies was the first company in the world inventing a data deduplication storage product for backup purposes. DCT could backup thousands of servers much more cost-effectively and faster than any other technology solution at that point.
+
DataCenter Technologies was Incubaid’s first storage software company, making storage systems in datacenters more efficient and scalable.
Q-layer was one of the first companies in the industry to create and end-to-end cloud automation product. Q-layer created and invented the virtual datacenter concept where complex IT resources were managed in what we called Virtual Datacenters at that time. Q-layer converged storage, virtualization, & networking in one stack.
Kristof founded Open vStorage back in 2008. OVS worked closely together with Amplidata and later GIG.tech.
+
Open vStorage is an ultra-reliable distributed block store for hyper performance storage workloads and has customers actively using it across the world.
+
Open vStorage is now an independent cash flow positive company operating from Lochristi.
Dacentec was Incubaid’s datacenter facility in North America. The facility was the one of the first energy-neutral datacenters in the world, powered by renewable energy. Operating a 23,000 square foot purpose-built data center in Lenoir, North Carolina, it offered a comprehensive suite of dedicated hosting, co-location, and technology-neutral green cloud data center services.
Amplidata was one of the first highly-scalable object storage systems in the world. Amplidata could fit petabytes of data in one rack in a datacenter and could do this at a cost a fraction of others. The software is ultra reliable and was used by major companies in the world to store their large archives.
+
Incubaid founded Racktivity with the goal to make datacenters eco-friendly and green.
+
Datacenters are globally massive consumers of electricity. Millions of servers are running without knowledge or insights in efficiency and power utilization. Racktivity has a portfolio of energy management systems for datacenter racks and individual servers, in which the uptime of the servers can also be remotely managed.
Mobile operators looking to provide more unified data services to their subscribers can benefit from the OneApp infrastructure to provide:
+
- mobile data cloud for storing personal information, pictures, videos, etc - mobile communication platform for community formation or subscriber marketing - mobile content cloud for premium content and delivery of content local to the subscriber
+
Awingu develops a software to simplify enterprise mobility and liberate legacy applications. Our software aggregates all company files and applications to one secure online workspace that can be accessed from any device or OS using any HTML5-based browser.
2015 - Itsyou.online
+Itsyou.online is a web-based service using blockchain distributed ledger to keep track of online interaction in which you provide identity information. As a persona you can release only the necessary parts of identity information needed to complete an online transaction: e-commerce purchase, web registration, or contract signature.
Rivine was an open source project to create custom Proof Of Stake blockchains. This approach makes Rivine more scaleable and more secure compared to the standard. Rivine later became the basis of the ThreeFold Chain.
GIG delivers the first scalable and multi-tenant edge cloud solution that provides deployment automation and instant delivery of apps all over the world.
+
GIG was founded by Kristof as his first portfolio company, combining the strength of multiple Incubaid startups in 2015 and was at the foundation of an investment philosophy change. Not much later, Wave Two of investments followed.
+
GIG.tech is now an independent cash flow positive company operating from Lochristi.
At the launch of the ThreeFold Grid a lot of people ventured into DIY farming, and with success as the grid has grown immensly. Still some people did not want to dive into installing their own farming equipment or building it from scratch.
+
+
The BetterToken Solution
+
BetterToken has developed a easy way to start farming ThreeFold tokens. Customers can easily select a SoHo server and it's specification in the webshop. BetterToken makes sure this server then is 100% farming ready all the customer needs to do is plug in the ethernet cable and powercable to start farming ThreeFold Tokens. Upside to farming with BetterToken Soho-Nodes is that all equipment is certified by ThreeFold and this makes that cultivation tokens are released sooner than tokens cultivated on DIY Farms.
Plug and Farm NodeServers make it possible for all tech levels to jump in. We aim to make it possible for you to invest in the grid, plug in your server, and get it working in minutes. No long difficult procedures.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
OPEN TO ALL BUDGETS
+
BetterToken provides Nodeservers varying from 1K – 20k+. The range consists of ultra-silent home devices to rack-mountable 2U devices to run in your (local) datacenter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
CUSTOMISE
+
Use the Node Server configurator in our ServerShop to configure exactly the server you want. You can choose from our range of ThreeFold Certified Hardware to create any server from a home office quiet running server to a fully loaded compute engine or hundreds of terabytes of storage.
+
+
+
+
+
+
+
+
+
+
+
BetterToken Roadmap
+
+
+
+
+
+
+
+
+
+
+
+
1
+
+
+
2017 Genesis Pool Cooperative
+
+ First European ThreeFold Farming Cooperative
+
+
+
+
+
+
+
+
+
2
+
+
+
2018 SoHo Node Vendor
+
Released Multiple Node Servers to Make Threefold Farming Easy for all.
+
+
+
+
+
+
+
+
+
3
+
+
+
2020/2021 Expand
+
Expand Co-Farming Pool in Lochristi
+ Start Cloud Farming Offer
Bringing fairness, security and scalability to digital commerce.
+
FairSwap is an open-source, decentralized project complete with wallet, exchange and P2P marketplace, protecting users and enabling true, trusted transacting globally.
We don’t need third-parties in digital commerce — yet they keep growing. And getting more dangerous.
+
No sovereignty or control : Centralized exchanges and wallets have custody of funds and require middlemen
+
Huge security and data privacy issues : Large exchanges are easy targets for hacks with little recourse or protection
+
Market manipulation and no transparency : Fake volumes and market-making, algorithmic trading
+
Complexity and lack of information : Hard to navigate exchanges, manage private keys, make informed decisions
+
Not enough interoperability : Existing platforms seek to lock in users to their own ecosystems
+
+
Solution & Mission
+
Open-source, peer-to-peer financial tools that are quantum-safe and built on decentralized capacity
+
Scaleable. Lightweight technology and self-healing technology makes it scale with ease and endlessly.
Storage, exchange and trade operations are the foundation of the economic machine. We believe that everyone has right to access free and open instruments that enable storage, exchange and trade in a fair and transparent way.
We believe doing good for the world and doing business can go hand in hand. We are building companies which will help to achieve an ambituous global goal:
+
Allow everyone to have unlimited access to Education, Sustainable Internet, and Complementary Digital Currencies for less than 1% of their monthly salary.
+
To reach this goal the world needs next-generation technologies that open education, mobile, and financial systems up for all.
Powering the Information Technology workloads of tomorrow through Self-Driving IT.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Open source software that creates neutral, green and affordable internet capacity, by people, for people. 100% decentralized.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
an open-source, decentralized project complete with wallet, exchange and P2P marketplace, protecting users and enabling true, trusted transacting globally.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The founding capacity farmer on the ThreeFold Network that actively supports the expansion and adoption of ThreeFold's P2P Cloud.
Mazraa is an independent Farming Cooperative based in Dubai UAE. It runs a hosting farm of +120 servers. They are amongst the first farmers on the ThreeFold Grid and farm tokens on a monthly basis. It is a founding capacity farmer on the ThreeFold Network and actively supports the expansion and adoption of ThreeFold's P2P Cloud. Mazraa's focus is to provide P2P Cloud capacity for developers, nodes for new and existing farmers, as well as, providing over the counter access to TFT's to enable reservations of Internet capacity.
Purchasing ThreeFold Tokens (TFT) enables users to access and reserve P2P cloud capacity on the ThreeFold Grid. A unit of TFT is utilized to reserve capacity in the form of either; SU Storage Units, NU Network Units and CU Compute Units.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
P2P Nodes
+
Become a digital "Farmer" on the ThreeFold Network by hosting P2P capacity nodes, which produces the most efficient, accessible and decentralized IT capacity. Our nodes enable capacity providers to earn by hosting the expansion of the internet.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Deploy Workloads
+
If you are a developer or enterprise interested running cloud work loads on TheeFold's P2P Cloud capacity, please send mazraa an email with a request for capacity access and we will be happy to get you started or visit cloud.threefold.io
The most exciting way to engage on the planet regeneration
+
Ootopia app combines super inspiring social media and microlearning in an exciting game where users are rewarded for their engagement with the impact token OOz.
OOTOPIA is a platform for leveraging the regeneration of the planet where everyone wins. Get inspired by a social feed abundant in examples and stories about the regenerative world we all want to live in. Access video lessons on how to have a much more sustainable lifestyle and how to include regenerative actions in your daily life. Then, as a reward for your engagement, receive credits in OOz, a social currency that feeds the OOTOPIA Ethical Marketplace leveraging the regenerative economy.
Learn whatever your heart desires. Access any oppurtunity to earn. Enter any shop. Travel everywhere. In OurVerse, you are limited by only your own imagination.
A metaverse focused on abundance and accessibility
+
OurVerse aims to provide a safe and inclusive digital environment where communities can come together for experiences ranging from meetings to virtual museum tours and exhibitions. An abundance of educational content can help communities around the world access information and opportunities that they would not have been able to otherwise.
+
It is created by utilizing the world’s largest decentralized and peer-to-peer of storage and compute: The ThreeFold Grid. This provides every OurVerse community with unparalleled security to each user and assures unprecedented sovereignty.
Discover a sovereign, secure and regenerative Internet infrastructure that is revolutionary in every way. With the greatest efficiency, scalability and autonomy yet, it is a system created to empower communities to push the limits of what is possible in a decentralized world.
Our beautiful world has become a crazy place with lots of changes. Do you want to be part of a movement which is making real change and which has a purpose to resolve some of the biggest issues in the world? OurWorld is a grounded movement, actions first with a practical executable plan and all required tools. OurWorld practices are regenerative, spiritual and high tech.
Billions of people do not have folks or teachers to help them acquire basic skills, unlock their potential and lead happy and dignified lives.
+
+
The Sikana Solution
+
3 billion people have access to screens and our goal is to transform them into tools for instruction. Video is a powerful and cost-effective medium to promote skill acquisition and health and environmental awareness.
Every child deserves an education. Inspire change. Take action.
+
ETake Action Global is committed to creating space for teachers and students to work at local and global levels for the betterment of humanity for today and for tomorrow.
To inspire change by providing opportunities for students around the world to take action on social good causes through education. TAG aims to find ways to connect thousands of teachers with students around the world to provide free, quality, meaningful education.
+
Method
+
TAG wants to raise the bar of education by having experts to teach the students and by initiating teacher training with help of technology. For years they have been working to bring positive and needed change to the education system and this is another step forward. A peer-to-peer education system opens up the possibilities for learning and positive solutions for our world. The peer-to-peer platform will run on the ThreeFold Grid and will utilize elements of Digital Twin technology. The Video Chat solution will be used to allow teachers to teach refugees. They have already been doing this for five years with Project Kakuma.
Empowering equality, autonomy and sustainability with game-changing technology built with a collaborative ecosystem.
+Live and distributed in 21 countries and expanding.
There are some major challenges with the current foundation of the internet and how it has moved from being a medium to independently share information amongst internet users, to a multi-billion dollar industry governed by a few companies.
The technology that generates internet capacity, services and applications is expensive, power hungry and centralized, as a result, it's not inclusive, affordable, sustainable or scalable.
+
80% of today’s internet capacity is centralized. Data is monopolized and controlled by a few. Your information is not private.
+
+
The ThreeFold Foundation Solution
+
A decentralized grid of internet compute & capacity focused on democratizing internet compute and storage capacity to enable a responsible internet for all.
+
Neutral. No one single company or person can ever monopolize the Threefold Grid due to decentralization.
+
Scaleable. Lightweight technology and self-healing technology makes it scale with ease and endlessly.
+
Blockchain Enabled. Tokens are created only when capacity is added to the grid. Also doubles as payment mechanism to provision workloads.
+
Future Workloads The decentralized nature of the grid makes it very compatible with IOT, 5G, and other workloads of the future.
Q3/Q4 2018 BIG PARTNERSHIP AND CAPACITY DEPLOYMENT
+
Atomic Swap Support for decentralized exchange
+ 10x more capacity active compared to other blockchain projects (79Pb)
+ HPE & SOLIDARIDAD partnerships to promote farming of capacity
+ HPE Partnership
+
+
+
+
+
+
+
+
+
4
+
+
+
Q2 2019 TESTNET AND MINTING LAUNCH
+
Grid Capacity Utilization (Testnet)
+ Grid 1.0 Services
+ ThreeFold Token Minting in public grid
+ Private Zero OS, S3 storage, Web- Gateway, ZeroDB, Launch FreeFlow Pages (Beta),
+ Launch Digital Twin
+ Blockchain / Token Launch
+
+
+
+
+
+
+
+
+
+
5
+
+
+
Q2 2020 PUBLIC GRID LAUNCH
+
Grid Capacity Utilization (Public)
+ Support Grid 1.1 Services
+ Private Zero OS, S3 storage, Web- Gateway, ZeroDB, Live Launch ThreeFold Now Marketplace
+ Migration from Rivine to Stellar Blockchain
+ Digibyte Partnership
+ Dash/Next Partnership
+ Waykichain Partnership
+
+
+
+
+
+
+
+
+
6
+
+
+
Q3/Q4 2020 PUBLIC GRID UPDATES
+
Launch 2.2 and 2.4 versions of the TF Grid
+ Hosted Digital Twin launched for the public
+ Public Launch Threefold now (App Marketplace)
+ Skale Lab Partnership
+ Whitepaper 2.3 Release
+
+
+
+
+
+
+
+
+
7
+
+
+
Q1/Q2 2021 SCALING THE GRID + MORE USECASES
+
Public Launch Of Certified Capacity On The Grid
+ Public launch of ThreeFold eVDC
+ Whitepaper 2.4 Release
Large, centralized datacenters are owned by just a few companies. They are only located in star topologies and energy-dense areas, and they are power-hungry.
The approach of adding more – people and layers – to achieve security is flawed.
+
With the demand for IT capacity growing tremendously, these methods are not build for the future. There are enough issues today.
+
+
The ThreeFold Tech Solution
+
Self-Driving IT. A decentralized peer-to-peer system inspired by nature.
+ All
+ {% set taxonomy = get_taxonomy(kind="categories") %}
+ {% set categories = taxonomy.items %}
+ {% for category in categories %}
+ {% set path = category.name | slugify %}
+ {% set fullpath = "/categories/" ~ path %}
+ {{category.name}}
+ {% endfor %}
+
+
+{% set section = get_section(path="blog/_index.md")%}
+
+
+
FEATURED POSTS
+
+ {% for page in section.pages %}
+ {% if page.extra.isFeatured %}
+ {{ page.title }}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/partials/featuredBlog.html b/templates/partials/featuredBlog.html
new file mode 100644
index 0000000..80d2320
--- /dev/null
+++ b/templates/partials/featuredBlog.html
@@ -0,0 +1,29 @@
+
+
+
\ No newline at end of file
diff --git a/templates/partials/page_list.html b/templates/partials/page_list.html
new file mode 100644
index 0000000..b773a04
--- /dev/null
+++ b/templates/partials/page_list.html
@@ -0,0 +1,19 @@
+
+{% if section.extra.group_pages_by %}
+
+ {% set taxonomy = get_taxonomy(kind=section.extra.group_pages_by) %}
+ {% set roles = taxonomy.items %}
+ {% for role in roles %}
+
+ {% set icon_path = config.extra.taxonomies["roles"][role.name].icon_path | as_str %}
+
+ {% set path = role.name | slugify %}
+ {% set fullpath = "/roles/" ~ path %}
+ {{role.name}}
+ {% for page in role.pages %}
+ {% include "partials/pageBox.html"%}
+ {% endfor %}
+
+ {% endfor %}
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/partials/postCard.html b/templates/partials/postCard.html
new file mode 100644
index 0000000..9cf0a57
--- /dev/null
+++ b/templates/partials/postCard.html
@@ -0,0 +1,37 @@
+
\ No newline at end of file
diff --git a/templates/partials/tags.html b/templates/partials/tags.html
new file mode 100644
index 0000000..5db604a
--- /dev/null
+++ b/templates/partials/tags.html
@@ -0,0 +1,5 @@
+
+ {% for tag in page.taxonomies.categories %}
+
{{tag}}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/templates/positionPage.html b/templates/positionPage.html
new file mode 100644
index 0000000..ee8059d
--- /dev/null
+++ b/templates/positionPage.html
@@ -0,0 +1,31 @@
+{% extends "_default/base.html" %}
+{% block content %}
+
+
+
+
+{% set banner_path = config.extra.taxonomies["roles"][page.taxonomies.roles[0]].banner_path | as_str %}
+{% set styles = "background: url('/" ~ banner_path ~ "'); background-size: cover; background-position: center" %}
+
+
+
+ {% for page in term.pages %}
+ {% include "partials/pageBox.html"%}
+ {% endfor %}
+
+
+ {% include "partials/applicationForm.html"%}
+
+
+
+
+
+
+{% endblock content %}
\ No newline at end of file
diff --git a/templates/section.html b/templates/section.html
new file mode 100644
index 0000000..e328616
--- /dev/null
+++ b/templates/section.html
@@ -0,0 +1,11 @@
+{% extends "_default/base.html" %}
+
+{% block content %}
+
+
+ {{ section.content | safe}}
+
+ {% include "partials/page_list.html" %}
+
+
+ {% endblock content %}
diff --git a/templates/shortcodes/admonition.html b/templates/shortcodes/admonition.html
new file mode 100644
index 0000000..0fff67e
--- /dev/null
+++ b/templates/shortcodes/admonition.html
@@ -0,0 +1,65 @@
+
+
+{% set classes = "" %}
+
+{% set first_line = body | split(pat="\n") | first %}
+{% set parsed_first_line = first_line | split(pat=" ") %}
+{% set admonition = parsed_first_line | first %}
+{% set style = "" %}
+
+{% set content = body | split(pat="\n") | slice(start=2) | join(sep="\n") %}
+
+
+{% if admonition == "!!!" %}
+ {% set classes = "admonition" %}
+{% elif admonition == "???" %}
+ {% set style = "collapsible closed" %}
+ {% set classes = "admonition" %}
+{% elif admonition == "???+" %}
+ {% set style = "collapsible open" %}
+ {% set classes = "admonition" %}
+{% else %}
+ {% set classes = "hidden" %}
+{% endif %}
+
+{% if "inline end" in first_line %}
+ {% set classes = classes ~ " inline end" %}
+ {% set parsed_first_line = parsed_first_line | slice(end=-2)%}
+{% elif "inline" in first_line %}
+ {% set classes = classes ~ " inline" %}
+ {% set parsed_first_line = parsed_first_line | slice(end=-1)%}
+{% endif %}
+
+{% if classes != "hidden"%}
+ {% if parsed_first_line[1] %}
+ {% set classes = classes ~ " " ~ parsed_first_line[1] %}
+ {% endif %}
+ {% if parsed_first_line[2] %}
+ {% if not parsed_first_line[2] == '""' %}
+ {% set title = parsed_first_line | slice(start=2) | join(sep=" ") %}
+ {% endif %}
+ {% else %}
+ {% if parsed_first_line[1] %}
+ {% set title = parsed_first_line[1] | title %}
+ {% endif %}
+ {% endif %}
+{% endif %}
+
+
+{% if "collapsible" in style %}
+
+ {% if title %}
+ {{ title | trim_start_matches(pat='"') | trim_end_matches(pat='"') }}
+
{{ content }}
+ {% endif %}
+
+{% else %}
+
+ {% if title %}
+
{{ title | trim_start_matches(pat='"') | trim_end_matches(pat='"') }}
+ {% endif %}
+
{{ content }}
+
+{% endif %}
diff --git a/templates/shortcodes/button.html b/templates/shortcodes/button.html
new file mode 100644
index 0000000..56519cd
--- /dev/null
+++ b/templates/shortcodes/button.html
@@ -0,0 +1,5 @@
+
+{% set path = body | split(pat="href=") | slice(start=1) | first | split(pat=">") | first | trim_start_matches(pat='"') | trim_end_matches(pat='"') %}
+
\ No newline at end of file
diff --git a/templates/shortcodes/earn_sec.html b/templates/shortcodes/earn_sec.html
new file mode 100644
index 0000000..cc85fae
--- /dev/null
+++ b/templates/shortcodes/earn_sec.html
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
All you need to get started is
+ electricity, a network connection, and a FreeFlow Node
+
+
+
+
+
+
+
+
+
+
+
Provide decentralized storage and
+ compute capacity to host your communities digital life while maintaining privacy.
+
+
+
+
+
+
+
+
+
+
+
+
Earn in the most valuable and
+ rapidly growing economy: the Internet and cloud
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/featured_stories.html b/templates/shortcodes/featured_stories.html
new file mode 100644
index 0000000..7ec1e0f
--- /dev/null
+++ b/templates/shortcodes/featured_stories.html
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ get a node and start earning
+
+
Get a FreeFlow Node and add capacity to
+ the FreeFlow Network.
+
+
+
+
+
+
+
+
+
+
+
+
+ GET THE FREEFLOW TWIN
+
+
Reserve your sovereign digital twin. Take control over your digital life.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ACQUIRE CHI
+
+
The digital energy currency
+ of the FreeFlow network `CHI token`
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/fflow_experiences.html b/templates/shortcodes/fflow_experiences.html
new file mode 100644
index 0000000..02e6da3
--- /dev/null
+++ b/templates/shortcodes/fflow_experiences.html
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
FREEFLOWING EDUCATION
+
All citizens can now acquire information and learn skills.
+
+
+
+
+
+
+
+
+
+
+
FREEFLOWING EMPOWERMENT
+
All citizens can now attain the opportunity to participate in the digital economy.
+
+
+
+
+
+
+
+
+
+
+
+
FREEFLOWING COLLABORATION
+
All citizens can now work together to achieve goals and growth.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/fflow_grid.html b/templates/shortcodes/fflow_grid.html
new file mode 100644
index 0000000..40cada5
--- /dev/null
+++ b/templates/shortcodes/fflow_grid.html
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
fully own your data
+
The entirety of your data belogs to you instead of company or service-provider.
+
+
+
+
+
+
+
+
+
+
+
unbeatable privacy
+
Only you have control of your data and decide who has access to it. Forever.
+
+
+
+
+
+
+
+
+
+
+
+
zero manipulation
+
Your data can never be used for financial or commercial gains by anyone.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/fflow_skills.html b/templates/shortcodes/fflow_skills.html
new file mode 100644
index 0000000..ea55337
--- /dev/null
+++ b/templates/shortcodes/fflow_skills.html
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
Meet & Communicate
+
Chat with your friends, hold meetings and and have video conferencing.
+
+
+
+
+
+
+
+
+
Exchange & Store Money
+
Transact or manage your assets using the wallet features available with the Twin.
+
+
+
+
+
+
+
+
+
Create
+
Create videos, documents or anything else you require for your daily needs.
+
+
+
+
+
+
+
+
+
Organize
+
Archive and organize all your data in one place without worrying about security.
+
+
+
+
+
+
+
+
+
Share
+
Send your data and files to anyone of your choice directly without central servers.
+
+
+
+
+
+
+
+
+
Publish
+
Build websites, librariies or whatever else you require with the FreeFlow Twin.
+
+
+
+
+
+
+
+
+
Discover
+
FInd and browse any information without being tracked or logged.
+
+
+
+
+
+
+
+
+
Collaborate
+
Work with your friends, family or collegues or projects or tasks together.
+
+
+
+
+
+
+
+
+
Develop & Expand
+
Develop more tools or decentralized applications for the FreeFlow Grid.
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/grid_stats.html b/templates/shortcodes/grid_stats.html
new file mode 100644
index 0000000..0ae595d
--- /dev/null
+++ b/templates/shortcodes/grid_stats.html
@@ -0,0 +1,78 @@
+{% set styles = "background-image: url('/images/ston_bg.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) %}
+{% set nodes = data.nodes %}
+{% set countries = data.countries %}
+{% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ nodes }}
+
+
+
+ freeflow nodes deployed
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ countries }}
+
+
+
+ countries involved
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ capacity | round() }}TB
+
+
+
+ capacity generated
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/menu.html b/templates/shortcodes/menu.html
new file mode 100644
index 0000000..167be2b
--- /dev/null
+++ b/templates/shortcodes/menu.html
@@ -0,0 +1,44 @@
+
+
+{% set columns = body | safe | markdown | split(pat="|||") %}
+
+
+
+{% set classes = "relative flex flex-col lg:flex-row items-baseline -mx-8 sm:-mx-12 lg:-mx-12 xl:-mx-8" %}
+{% set column_classes = "flex-1 m-2 lg:m-4" %}
+
+
+
+
+ {% for column in columns%}
+
+ {% if column | as_str | length < 10 %}
+
+ {{column | split(pat="{% button() %}") | slice(end=1)}}
+ {% for button in column | split(pat="{% button() %}") | slice(start=1) | join(sep="") | split(pat="{%% end %%}") | slice(end=-1) %}
+ {% set body = button %}
+ {% include "shortcodes/button.html" %}
+ {% endfor %}
+
+ {% else %}
+
+ {{column | split(pat="{% button() %}") | slice(end=1) | first | safe}}
+
+
+ {% for button in column | split(pat="{% button() %}") | slice(start=1) | join(sep="") | split(pat="{%% end %%}") | slice(end=-1) %}
+ {% set body = button %}
+ {% include "shortcodes/button.html" %}
+ {% endfor %}
+
+ {% endif %}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/templates/shortcodes/mermaid.html b/templates/shortcodes/mermaid.html
new file mode 100644
index 0000000..7ddc2e9
--- /dev/null
+++ b/templates/shortcodes/mermaid.html
@@ -0,0 +1,3 @@
+
+ {{ body }}
+
\ No newline at end of file
diff --git a/templates/shortcodes/roadmap1.html b/templates/shortcodes/roadmap1.html
new file mode 100644
index 0000000..6180dfe
--- /dev/null
+++ b/templates/shortcodes/roadmap1.html
@@ -0,0 +1,133 @@
+
+
+
Q3/Q4 2018 BIG PARTNERSHIP AND CAPACITY DEPLOYMENT
+
Atomic Swap Support for decentralized exchange
+ 10x more capacity active compared to other blockchain projects (79Pb)
+ HPE & SOLIDARIDAD partnerships to promote farming of capacity
+ HPE Partnership
+
+
+
+
+
+
+
+
+
4
+
+
+
Q2 2019 TESTNET AND MINTING LAUNCH
+
Grid Capacity Utilization (Testnet)
+ Grid 1.0 Services
+ ThreeFold Token Minting in public grid
+ Private Zero OS, S3 storage, Web- Gateway, ZeroDB, Launch FreeFlow Pages (Beta),
+ Launch Digital Twin
+ Blockchain / Token Launch
+
+
+
+
+
+
+
+
+
+
5
+
+
+
Q2 2020 PUBLIC GRID LAUNCH
+
Grid Capacity Utilization (Public)
+ Support Grid 1.1 Services
+ Private Zero OS, S3 storage, Web- Gateway, ZeroDB, Live Launch ThreeFold Now Marketplace
+ Migration from Rivine to Stellar Blockchain
+ Digibyte Partnership
+ Dash/Next Partnership
+ Waykichain Partnership
+
+
+
+
+
+
+
+
+
6
+
+
+
Q3/Q4 2020 PUBLIC GRID UPDATES
+
Launch 2.2 and 2.4 versions of the TF Grid
+ Hosted Digital Twin launched for the public
+ Public Launch Threefold now (App Marketplace)
+ Skale Lab Partnership
+ Whitepaper 2.3 Release
+
+
+
+
+
+
+
+
+
7
+
+
+
Q1/Q2 2021 SCALING THE GRID + MORE USECASES
+
Public Launch Of Certified Capacity On The Grid
+ Public launch of ThreeFold eVDC
+ Whitepaper 2.4 Release
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/roadmap2.html b/templates/shortcodes/roadmap2.html
new file mode 100644
index 0000000..66a9017
--- /dev/null
+++ b/templates/shortcodes/roadmap2.html
@@ -0,0 +1,61 @@
+
+
+
+
+
BetterToken Roadmap
+
+
+
+
+
+
+
+
+
+
+
+
1
+
+
+
2017 Genesis Pool Cooperative
+
+ First European ThreeFold Farming Cooperative
+
+
+
+
+
+
+
+
+
2
+
+
+
2018 SoHo Node Vendor
+
Released Multiple Node Servers to Make Threefold Farming Easy for all.
+
+
+
+
+
+
+
+
+
3
+
+
+
2020/2021 Expand
+
Expand Co-Farming Pool in Lochristi
+ Start Cloud Farming Offer
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html
new file mode 100644
index 0000000..236946c
--- /dev/null
+++ b/templates/shortcodes/row.html
@@ -0,0 +1,238 @@
+
+
+
+
+{% if page %}
+ {% if "](" in body %}
+ {% set body_arr = body | split(pat="](") %}
+ {% set body = body_arr[0] %}
+ {% for i in body_arr %}
+ {% set prev_index = loop.index0 - 1 %}
+ {% if not loop.first %}
+ {% if "![" in body_arr[prev_index] %}
+ {% set_global body = body ~ '](' ~ page.permalink ~ i %}
+ {% else %}
+ {% if i is not starting_with("http") %}
+ {% set base_url = get_url(path="") %}
+ {% set_global body = body ~ '](' ~ base_url ~ i %}
+ {% else %}
+ {% set_global body = body ~ '](' ~ i %}
+ {% endif %}
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+{% endif %}
+
+{% set columns = body | safe | markdown | split(pat="
|||
") %}
+
+{% set row_class = "relative flex flex-col md:flex md:flex-row flex-wrap max-w-fit overflow-hidden"%}
+
+
+{% if 2 < columns | length %}
+ {% set row_class = row_class ~ " lg:items-start" %}
+{% else %}
+ {% set row_class = row_class ~ " items-center" %}
+{% endif %}
+
+{% set col_class = "flex-1 mb-4 md:mb-12 lg:mb-0 lg:mx-2 xl:mx-4" %}
+
+
+{% set row_id = '' %}
+
+{% if id %}
+{% set row_id = id %}
+
+{% endif %}
+
+
+
+{% set padding_class = " py-8 md:py-8 lg:py-24" %}
+
+{% if padding %}
+ {% if "none" in padding %}
+ {% set padding_class = " py-0" %}
+ {% elif "top" in padding %}
+ {% set padding_class = " py-2 md:py-4 lg:pt-24" %}
+ {% elif "bottom" in padding %}
+ {% set padding_class = " py-2 md:py-4 lg:pb-24" %}
+ {% elif "both" in padding %}
+ {% set padding_class = " py-10 md:py-4 lg:py-24" %}
+ {% elif "headerboth" in padding %}
+ {% set padding_class = " py-24 md:py-4 lg:py-24" %}
+ {% endif %}
+{% endif %}
+
+{% if css %}
+ {% set padding_class = padding_class ~ " " ~ css %}
+{% endif %}
+
+{% set row_class = row_class ~ padding_class %}
+
+
+
+
+{% set margin_class = " mx-4 md:mx-16 lg:mx-24" %}
+
+{% if margin %}
+ {% if "none" in margin %}
+ {% set margin_class = " mx-0" %}
+ {% elif "wide" in margin %}
+ {% set margin_class = " mx-4 sm:mx-8 md:mx-12 lg:mx-16 xl:mx-20" %}
+ {% elif "moderate" in margin %}
+ {% set margin_class = " mx-8 sm:mx-16 md:mx-20 lg:mx-28" %}
+ {% elif "narrow" in margin %}
+ {% set margin_class = " mx-6 sm:mx-20 md:mx-28 lg:mx-40" %}
+ {% elif "tight" in margin %}
+ {% set margin_class = " mx-6 sm:mx-32 md:mx-40 lg:mx-80" %}
+ {% elif "header" in margin %}
+ {% set margin_class = " mx-6 sm:mx-20 md:mx-28 lg:mx-40 mt-10 lg:mt-0" %}
+ {% elif "withContainer" in margin %}
+ {% set margin_class = " mx-8 " %}
+ {% endif %}
+ {% if "lean-left" in margin %}
+ {% set margin = margin_class | replace(from=" ", to=" first:")%}
+ {% set margin_left = margin | replace(from="mx", to="-ml") %}
+ {% set margin_right = margin | replace(from="mx", to="mr") %}
+ {% set col_class = col_class ~ " md:last:px-8 lg:last:px-20 lg:max-w-[50%] lg:mx-0 " ~ margin_left ~ margin_right %}
+ {% set row_class = row_class ~ " sm:gap-0 " %}
+ {% elif "lean-right" in margin %}
+ {% set margin = margin_class | replace(from=" ", to=" last:")%}
+ {% set margin_left = margin | replace(from="mx", to="ml") %}
+ {% set margin_right = margin | replace(from="mx", to="-mr") %}
+ {% set col_class = col_class ~ " md:first:px-8 lg:first:px-20 lg:max-w-[50%] lg:mx-0 " ~ margin_left ~ margin_right %}
+ {% set row_class = row_class ~ " sm:gap-0 " %}
+ {% endif %}
+{% endif %}
+
+{% if css %}
+ {% set margin_class = margin_class ~ " " ~ css %}
+{% endif %}
+
+{% set row_class = row_class ~ margin_class %}
+
+{% if style %}
+
+ {% if "center" in style %}
+ {% set row_class = row_class ~ " text-center items-center " %}
+ {% set col_class = col_class ~ " flex-1 " %}
+ {% endif %}
+
+ {% if "items-end" in style %}
+ {% set row_class = row_class ~ " lg:items-end" %}
+ {% set col_class = col_class ~ " flex-1 " %}
+ {% endif %}
+
+
+
+ {% if "reverse" in style %}
+ {% set row_class = "flex flex-col-reverse md:flex-row items-center mx-6 sm:mx-20 md:mx-28 lg:mx-40" %}
+ {% endif %}
+
+
+
+ {% if "between" in style %}
+ {% set row_class = row_class ~ " lg:max-w-6xl " %}
+ {% elif "moderate" in style %}
+ {% set row_class = row_class ~ " " %}
+ {% endif %}
+
+
+ {% if "narrow" in style %}
+ {% set row_class = row_class ~ " lg:max-w-3xl " %}
+ {% elif "tight" in style %}
+ {% set row_class = row_class ~ " lg:max-w-sm " %}
+ {% elif "moderate" in style %}
+ {% set row_class = row_class ~ " mx-20 " %}
+ {% endif %}
+
+ {% if "invert-color" in style %}
+
+ {% set row_class = row_class ~ " text-white lg:text-white " %}
+
+ {% endif %}
+ {% else %}
+ {% set row_class = row_class ~ " " %}
+{% endif %}
+
+{% set anchor_link = ""%}
+{% if anchor %}
+ {% set anchor_link = anchor %}
+{% endif %}
+
+
+
+{% set styles = "" %}
+{% set div_class = " " %}
+{% if bgPath %}
+ {% set background_url = page.permalink ~ bgPath %}
+ {% set styles = "background: url('" ~ background_url ~ "'); background-size: cover; background-position: center;" %}
+ {% if "#desktop" in bgPath %}
+ {% set bgStyle = false %}
+ {% set div_class = " !bg-[length:0px_0px] !bg-no-repeat lg:!bg-cover " %}
+ {% set row_class = row_class | replace(from='text-white', to='text-black') %}
+ {% if "invert-color" in style %}
+ {% if "#desktop" in bgPath %}
+ {% set row_class = row_class ~ " lg:text-white " %}
+ {% endif %}
+ {% endif %}
+ {% endif %}
+{% 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 %}
+{% if bgColor %}
+ {% set styles = "background-color: " ~ bgColor ~ "; background-size: cover" %}
+ {% set row_class = row_class %}
+{% endif %}
+
+{% if class %}
+ {% set styles = "background-color: " ~ bgColor ~ "; background-size: cover" %}
+ {% set row_class = row_class %}
+{% endif %}
+
+
+{% set no_margins = " -mx-8 md:-mx-12 lg:-mx-16 xl:-mx-20" %}
+
+
+
+
+
+ {% for column in columns%}
+
+
+ {% if column | as_str | length < 10 %}
+
+ {{ column | safe }}
+
+ {% else %}
+
+
+
+ {% if "{% mermaid() %}" in column %}
+ {% set mermaid_section = column | safe | markdown | split(pat="{% mermaid() %}") %}
+ {% set mermaid_content = mermaid_section[1] | striptags | replace(from="–", to="--")%}
+
\ No newline at end of file
diff --git a/templates/shortcodes/space.html b/templates/shortcodes/space.html
new file mode 100644
index 0000000..fca83cc
--- /dev/null
+++ b/templates/shortcodes/space.html
@@ -0,0 +1,8 @@
+
+{% set height = 52 %}
+{% if size %}
+ {% if size == "small" %}
+ {% set height = 28 %}
+ {% endif %}
+{% endif %}
+
\ No newline at end of file
diff --git a/templates/shortcodes/team_sec.html b/templates/shortcodes/team_sec.html
new file mode 100644
index 0000000..8254c21
--- /dev/null
+++ b/templates/shortcodes/team_sec.html
@@ -0,0 +1,79 @@
+
+
+ THE TEAM
+
+
Spread across the world, our team has
+ built some of the world’s best Internet storage and cloud automation technologies since the ‘90s. With a strong
+ vision for the future, we’re now on a mission to create a peer-to-peer Internet that can host all of humanity’s
+ digital workloads via smart contract, removing all forms of centralization from global IT systems.