This commit is contained in:
2025-02-25 00:16:28 -07:00
parent be24ca0a32
commit d45f09f058
6 changed files with 99 additions and 386 deletions

View File

@@ -1,43 +1,52 @@
<div class="relative flex justify-center items-center isolate overflow-hidden bg-transparent h-screen">
<div class="px-4 lg:pb-24 pb-12 lg:px-8">
<div class="mx-auto max-w-4xl text-center">
<h2 class="text-balance font-normal tracking-tight text-white lg:text-6xl text-4xl fade-in">A True DePIN</h2>
<p class="text-balance font-normal tracking-tight text-white lg:text-1xl text-14xl fade-in">DePIN = Decentralized Physical Infrastructure Network<br><br></p>
<h2 class="text-balance font-normal tracking-tight text-white lg:text-5xl text-4xl fade-in">Planetary Scalable <br> Autonomous Infrastructure Layer <br>for The Internet</h2>
<p class="mx-auto mt-6 max-w-3xl text-pretty lg:text-2xl text-lg font-light text-gray-200 fade-in">Our unique technology enables a system that can scale globally, ensures stored data can never be corrupted, nor lost, recovers from unforeseen events, and guarantees 100% uptime.</p>
<p class="mx-auto mt-6 max-w-3xl text-pretty lg:text-2xl text-lg font-medium text-gray-200 fade-in">ThreeFold can be used by any Web2, Web3, AI, or Edge IT workload.
</p>
<div class="mt-12 flex items-center justify-center gap-x-6">
<a href="https://docs.threefold.io" class="fade-in rounded-2xl bg-white px-4 py-2.5 text-md font-semibold text-black shadow-sm hover:bg-gray-200 hover:text-gray-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2">Dive Deeper</a>
<div class="relative flex flex-col justify-start isolate overflow-hidden bg-transparent min-h-screen py-8">
<div class="px-4 lg:px-8">
<div class="mx-auto max-w-4xl text-center">
<h2 class="text-balance font-normal tracking-tight text-white lg:text-6xl text-4xl fade-in">A True DePIN</h2>
<p class="text-balance font-normal tracking-tight text-white lg:text-xl text-lg fade-in">DePIN = Decentralized
Physical Infrastructure Network<br><br></p>
<h2 class="text-balance font-normal tracking-tight text-white lg:text-5xl text-4xl fade-in">Planetary Scalable
<br> Autonomous Infrastructure Layer <br>for The Internet</h2>
<p class="mx-auto mt-6 max-w-3xl text-pretty lg:text-2xl text-lg font-light text-gray-200 fade-in">Our unique
technology allows everyone to become a provider<br> of network, storage and compute capacity.</p>
<div class="mx-auto max-w-7xl px-8 pt-3">
<img src="/images/become_farmer.png" alt="Become a Farmer" class="w-full fade-in">
</div>
<div class=" flex items-center justify-center ">
<a href="https://docs.threefold.io"
class="fade-in rounded-2xl bg-white px-4 py-2.5 text-md font-semibold text-black shadow-sm hover:bg-gray-200 hover:text-gray-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2">Dive
Deeper</a>
</div>
</div>
</div>
</div>
</div>
<style>
/* Define the fade-in animation */
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
<style>
/* Define the fade-in animation */
@keyframes fadeIn {
0% {
opacity: 0;
}
/* 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 */
100% {
opacity: 1;
}
/* 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>
}
/* 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>