update why page

This commit is contained in:
2025-02-18 10:50:51 +02:00
parent 267ce8aa8d
commit c378fdd806
6 changed files with 116 additions and 29 deletions

View File

@@ -0,0 +1,38 @@
<div class="relative isolate overflow-hidden bg-transparent">
<div class="px-6 lg:pt-32 mt-12 pt-24 lg:pb-24 pb-12 sm:px-6 lg:px-8">
<div class="mx-auto max-w-7xl">
<h2 class="fade-in text-balance text-4xl font-normal tracking-tight text-white lg:text-5xl">Web4 is the vision</h2>
<p class="fade-in mt-6 text-lg lg:text-xl font-light text-gray-200">Web4 is the next evolution of the Internet built on decentralization and collaboration between humans and machines. It is a more sustainable, autonomous system where people have control over their data, leveraging decentralized infrastructure (3Nodes) and AI-powered assistants and enables privacy and security through secure 3Phones and smart routers.
<br>
<br>
The Decentralized Cloud was the base layer to create Web4.
</p>
</div>
</div>
<style>
/* Define the fade-in animation */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/* Apply the fade-in animation to elements with the 'fade-in' class */
.fade-in {
animation: fadeIn 4s ease-in-out forwards; /* Adjust the duration (2s) to make it slower or faster */
}
/* Optional: Delay the animation for a more staggered effect */
h2 {
animation-delay: 0.5s; /* Delay for header */
}
p {
animation-delay: 1s; /* Delay for paragraphs */
}
</style>