diff --git a/content/_index.md b/content/_index.md
index 2b04b37..f64bc62 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -9,86 +9,85 @@ extra:
imgPath: /images/threefold_globe.png
---
-{% row() %}
+{% row(style="center narrow") %}
-# Reimagine your world
+## WELCOME TO THE
**PEOPLE’S INTERNET**
-
+### Join the peer-to-peer revolution
-Through simple, secure, and scalable technology,
-OurWorld empowers millions to invent and explore
-new experiences. Business, creativity, and
-community are being reimagined for a more
-sustainable and inclusive future.
-
-|||
-
-
+Powered by the ThreeFold blockchain the People’s Internet is the layer 0 infrastructure for an open source P2P Internet owned by humanity.
{% end %}
{% row(style="lean") %}
-
+
{% end %}
-{% row() %}
+{% row(style="center") %}
-## Foundation for Creation
+### EXPAND THE PEOPLE’S INTERNET
AND EARN TFT
-
+By connecting hardware at your home or office, support the growth of a decentralized Internet and earn a new digital currency, TFT.
-The Creator Economy requires robust infrastructure
-including a set of intuitive developer tools, and an
-engaged, decentralized community.
+
-
-
-[Learn about the Creator Economy on OurWorld]("/")
+
|||
-
+### DECENTRALIZE YOUR
+
+### DATA AND WORKLOADS
+
+Companies and developers have already started using ThreeFold for it’s autonomous, decentralization and privacy features.
+
+
+
+
{% end %}
-{% row() %}
+{% row(style="center") %}
-## Solutions for Scaling
-
-
-
-OurWorld is eliminating the barriers to Web 3
-adoption. With high speeds, low fees, and
-progressive UX, OurWord climate-neutral
-blockchain is ready for explosive growth.
-
-
-
-[Link to something]("/")
+
|||
-
+## BUILT BY
THE PEOPLE
FOR HUMANITY
+
+The People’s Internet is formed by independent people from all around the world who connect Internet capacity to a new Planetary Network. Together they form a collective that brings a new paradigm – an open-source peer-to-peer Internet owned by humanity.
+
+
{% end %}
-{% row() %}
+{% row(style="center") %}
-## For a multi-chain future
+## POWERED BY A
-
+## DECENTRALIZED OS
-OurWorld runs in concert with Ethereum, Polkadot, Cosmos, and more, allowing for the free flow of assets and communication between networks for the betterment of all.
+Zero-OS is a stateless and lightweight operating system designed to host anything that runs on Linux in a decentralized way. Once installed, Zero-OS locks the hardware and dedicates its capacity to the People’s Internet via the ThreeFold Blockchain.
-
-
-[Link to something]("/")
+
|||
-
+
+
+{% end %}
+
+{% row(style="center moderate") %}
+
+## OUR GREATEST STRENGTH
COMES FROM OUR PARTNERS
+
+We are truly proud to be trusted by some of the biggest names in the industry.
+
+
+
+
{% end %}
diff --git a/css/index.css b/css/index.css
index eaba675..d7dc4fd 100644
--- a/css/index.css
+++ b/css/index.css
@@ -30,7 +30,7 @@ img[src*="#small"] {
}
img[src*="#medium"] {
- width: 150px;
+ width: 250px;
margin: auto;
}
@@ -75,6 +75,9 @@ img[src*="#large"] {
li li {
@apply text-sm lg:text-sm font-light;
}
+ button a {
+ @apply inline-block lg:text-lg hover:bg-gray-400 px-12 py-1 mr-5 my-10 border-2 shadow border-black capitalize;
+ }
}
button:hover :is(:where(a)) {
diff --git a/static/images/become_farmer_new.jpg b/static/images/become_farmer_new.jpg
new file mode 100644
index 0000000..426bc77
Binary files /dev/null and b/static/images/become_farmer_new.jpg differ
diff --git a/static/images/network_new.jpg b/static/images/network_new.jpg
new file mode 100644
index 0000000..d3348ac
Binary files /dev/null and b/static/images/network_new.jpg differ
diff --git a/static/images/ourpartners.png b/static/images/ourpartners.png
new file mode 100644
index 0000000..7ab4843
Binary files /dev/null and b/static/images/ourpartners.png differ
diff --git a/static/images/p4p_new.png b/static/images/p4p_new.png
new file mode 100644
index 0000000..3036cfb
Binary files /dev/null and b/static/images/p4p_new.png differ
diff --git a/static/images/zero_os.jpg b/static/images/zero_os.jpg
new file mode 100644
index 0000000..0d9a040
Binary files /dev/null and b/static/images/zero_os.jpg differ
diff --git a/templates/shortcodes/row.html b/templates/shortcodes/row.html
index 0284874..8c61b22 100644
--- a/templates/shortcodes/row.html
+++ b/templates/shortcodes/row.html
@@ -10,40 +10,48 @@ Parameters:
-->
{% set columns = body | safe | markdown | split(pat="|||") %}
-{% set classes = "relative pt-12 flex flex-col sm:grid sm:grid-cols-2 sm:gap-10 xl:flex xl:flex-row md:py-12 lg:py-16"%}
+{% set row_class = "relative pt-12 flex flex-col sm:grid sm:grid-cols-2 sm:gap-10 xl:flex xl:flex-row md:py-12 lg:py-16"%}
{% if 2 < columns | length %}
- {% set classes = classes ~ " lg:items-start" %}
+ {% set row_class = row_class ~ " lg:items-start" %}
{% else %}
- {% set classes = classes ~ " lg:items-center" %}
+ {% set row_class = row_class ~ " lg:items-center" %}
{% endif %}
-{% set column_classes = "flex-1 mb-8 md:mb-0 md:mx-8" %}
-
+{% set col_class = "flex-1 mb-8 md:mb-0 md:mx-8" %}
{% if style %}
-
- {% if "lean" in style %}
- {% set classes = "relative flex flex-col lg:flex-row items-baseline -mx-8 sm:-mx-12 md:-mx-16 lg:-mx-20" %}
- {% set column_classes = "flex-1 m-4 lg:m-0" %}
+ {% if "center" in style %}
+ {% set row_class = row_class ~ " text-center mx-auto justify-center" %}
+ {% set col_class = col_class ~ " flex-1 m-4 lg:m-0" %}
{% endif %}
- {% if "center" in style %}
- {% set classes = classes ~ " text-center" %}
+
+ {% if "lean" in style %}
+ {% set row_class = "relative flex flex-col lg:flex-row items-baseline -mx-8 sm:-mx-12 md:-mx-16 lg:-mx-20" %}
+ {% set col_class = "flex-1 m-4 lg:m-0" %}
{% endif %}
+
+ {% if "narrow" in style %}
+ {% set row_class = row_class ~ " lg:max-w-3xl" %}
+ {% elif "moderate" in style %}
+ {% set row_class = row_class ~ " lg:m-20" %}
+ {% endif %}
+
+
{% endif %}
{% set styles = "" %}
{% if bgPath %}
{% set styles = "background: url('" ~ bgPath ~ "'); background-size: cover" %}
- {% set classes = classes ~ "w-screen -mx-8 sm:-mx-12 md:-mx-16 lg:-mx-20 lg:py-40 p-8 sm:p-12 md:p-16 lg:p-20" %}
+ {% set row_class = row_class ~ "w-screen -mx-8 sm:-mx-12 md:-mx-16 lg:-mx-20 lg:py-40 p-8 sm:p-12 md:p-16 lg:p-20" %}
{% endif %}
-