38 lines
1.6 KiB
HTML
38 lines
1.6 KiB
HTML
<div class="relative isolate overflow-hidden lg:py-24 py-12">
|
||
<div class="px-4 lg:px-8">
|
||
<div class="mx-auto max-w-7xl">
|
||
<h2 class="fade-in text-balance text-3xl font-normal tracking-tight text-white lg:text-5xl capitalize">The Vision for a New Internet</h2>
|
||
<div class="max-w-3xl">
|
||
<p class="fade-in mt-6 text-lg lg:text-xl font-light text-gray-200">Unlike traditional internet infrastructure, which relies on centralized data centers and corporate control, ThreeFold is built on a global mesh of independent cloud providers—individuals and organizations who contribute data, cloud and network power directly to the ecosytem.</p>
|
||
<p class="fade-in mt-6 text-lg lg:text-xl font-light text-gray-200">This makes ThreeFold uniquely decentralized at the physical layer, eliminating single points of failure and gatekeepers. It’s a truly neutral and scalable foundation that puts privacy, resilience, and digital sovereignty at the core of the internet.</p>
|
||
</div>
|
||
</div>
|
||
</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>
|
||
|