diff --git a/content/home/index.md b/content/home/index.md
index 8d04c5f9d..e4d77c62e 100644
--- a/content/home/index.md
+++ b/content/home/index.md
@@ -48,6 +48,56 @@ extra:
+
+
+
+
+
+
+
+ {{ left_text(
+ title="ThreeFold is a Decentralized Infrastructure Layer for The Internet",
+ description="We have built a foundational platform that runs directly on bare metal, offering a scalable solution focused on the essential building blocks of the Internet and Cloud: compute, data, and network.",
+ button_text="Discover How It Works",
+ button_link="/what"
+
+) }}
+
+
+
+
+
+ ### Three Inventions at the Core of Our System
+
+
+ {{ features_2(
+ subtitle ="COMPUTE",
+ header="Bare Metal Operating System",
+ description1="Zero OS, an efficient and secure operating system, runs directly on the hardware – enabling an autonomous cloud.",
+ description2="Can run any Web2, Web3, or AI workload at the edge of the Internet, with more scalability and reliability."
+) }}
+
+ {{ features_2(
+ subtitle="DATA",
+ header="Unbreakable Data",
+ description1="Data cannot be compromised and always remains private, owned by you. A scalable system, to the planetary level.",
+ description2="Can be distributed and stored in ways which are at least 10x more efficient and orders of magnitude more secure and reliable."
+) }}
+
+ {{ features_2(
+ subtitle="NETWORK",
+ header="Unbreakable Network",
+ description1="End-to-end encrypted overlay network, always looking for the shortest possible path between participants.",
+ description2="Logical Internet address securely linked to a private key. Unlimited scale and performance optimizations."
+) }}
+
+
+
+
+
+
+
+
diff --git a/css/index.css b/css/index.css
index a6d80a95d..ba822d44a 100644
--- a/css/index.css
+++ b/css/index.css
@@ -264,7 +264,7 @@ background-color:#5596f5 !important;
@layer components {
h1 {
- @apply text-4xl lg:text-6xl font-normal;
+ @apply font-normal tracking-tight leading-tight text-white lg:text-6xl text-3xl;
color: #ffffff;
font-family: "Inter", sans-serif !important;
}
@@ -277,7 +277,7 @@ background-color:#5596f5 !important;
@apply font-semibold;
}
h3 {
- @apply text-2xl lg:text-3xl my-4 font-extralight;
+ @apply lg:text-2xl text-xl leading-tight font-normal tracking-tight
color: #ffffff;
font-family: "Inter", sans-serif !important;
}
diff --git a/templates/shortcodes/features_2.html b/templates/shortcodes/features_2.html
new file mode 100644
index 000000000..c80e17045
--- /dev/null
+++ b/templates/shortcodes/features_2.html
@@ -0,0 +1,58 @@
+{% set subtitle = subtitle | default(value="") %}
+{% set header = header | default(value="") %}
+{% set description1 = description1 | default(value="") %}
+{% set description2 = description2 | default(value="") %}
+
+
+
-
- {{ title }}
+
+ {{ title }}
{{ description }}
diff --git a/templates/shortcodes/left_text.html b/templates/shortcodes/left_text.html
new file mode 100644
index 000000000..788ec24f2
--- /dev/null
+++ b/templates/shortcodes/left_text.html
@@ -0,0 +1,60 @@
+{% set title = title | default(value="Built") %}
+{% set description = description | default(value="") %}
+{% set button_text = button_text | default(value="") %}
+{% set button_link = button_link | default(value="") %}
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file