main_prelaunch #47

Merged
mik-tf merged 8 commits from main_prelaunch into main 2024-11-23 03:02:05 +00:00
2 changed files with 19 additions and 4 deletions
Showing only changes of commit 3d0560dedf - Show all commits

View File

@ -14,10 +14,14 @@ Web4 is the next generation of the Internet. ThreeFold has been working on it fo
Web4 represents the natural evolution of the Internet, where humans and artificial intelligence collaborate to develop a new paradigm focused on Augmented Collective Intelligence[^1] aimed at advancing planetary well-being while making sure everyone has equal chances.
[^1]: Augmented Collective Intelligence - Supermind [Link](https://www.supermind.design/)
## Mission
Our Mission is to create the best possible infrastructure layer for Web 4.0[^2] with the following benefits:
[^2]: Web4 - Techopedia [Link](https://www.techopedia.com/definition/web4)
* Sovereignty for countries, communities and people
* Data is close to the users in their own countries
* There is no need to build excessive data centers
@ -128,7 +132,4 @@ At ThreeFold, we believe that the Internet represents an amazing opportunity tha
We think that it is possible to collectively build and improve the Internet so as it unlocks its unlimited potential to humanity.
***Let's do it.***
[^1]: Augmented Collective Intelligence - Supermind [Link](https://www.supermind.design/)
[^2]: Web4 - Techopedia [Link](https://www.techopedia.com/definition/web4)
***Let's do it.***

View File

@ -51,6 +51,7 @@
/* Apply the Inter font globally */
body {
scroll-padding-top: 80px;
font-family: 'Inter', sans-serif; /* Set the global font */
font-size: 18px;
}
@ -110,6 +111,19 @@ html[data-theme="dark"] {
.navbar { /* or .navbar--fixedTop if it has that class */
background-color: #131213;
}
/* Apply scroll margin to footnote targets */
[data-footnote-ref="true"] {
scroll-margin-top: 80px; /* Adjust this value to match your navbar height */
}
/* Ensure navbar items and logo are vertically aligned */
.navbar__logo {
display: flex;
align-items: center; /* Center aligns the items vertically */
height: 100%; /* Ensures full height for alignment */
}
.navbar__link { /* Example: for navbar links */
color: #ffffff;
}