55 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <div class="relative isolate overflow-hidden bg-transparent">
 | |
|     <div class="px-6 pt-12 pb-12">
 | |
|       <div class="mx-auto max-w-7xl text-center">
 | |
|         {# <h2 class="text-balance font-normal tracking-tight text-black lg:text-6xl text-4xl fade-in">Powered by ThreeFold</h2> #}
 | |
|         {# <p class="mx-auto mt-12  text-pretty lg:text-xl text-lg font-light text-gray-900 fade-in"><span class="font-semibold">AIBOX</span> is a project by ThreeFold, a team with over 10 years of experience 
 | |
|           building decentralized internet infrastructure.
 | |
|         </p> #}
 | |
|           <div class="fade-in-box mb-16 mx-auto text-center lg:flex lg:justify-center">
 | |
|             <img class="h-auto object-cover" src="/images/aibox_farming1.png" alt="AIBox Specifications">
 | |
|           </div>
 | |
|           <div class="fade-in-box mt-16 mx-auto text-center lg:flex lg:justify-center">
 | |
|             <img class="h-auto object-cover" src="/images/aibox_farming2.png" alt="AIBox Specifications">
 | |
|           </div>
 | |
|         {# <div  class="mt-10 flex items-center  gap-x-6 flex-wrap justify-center">
 | |
|           <a  href="https://threefold.io/" target="_blank" class="fade-in rounded-2xl bg-black px-4 py-2.5 text-sm lg:text-md font-semibold text-white shadow-sm hover:bg-gray-200 hover:text-gray-800 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 mb-4 lg:mb-0">
 | |
|             Visit ThreeFold
 | |
|           </a>
 | |
|           <a href="https://dashboard.grid.tf/" target="_blank" class="text-sm/6 font-semibold text-gray-900">Explore Grid Capacity <span aria-hidden="true">→</span></a>
 | |
|         </div> #}
 | |
|       </div>
 | |
|     </div>
 | |
| </div>
 | |
|   
 | |
|   <style>
 | |
|     /* Define the fade-in animation */
 | |
|     @keyframes fadeIn {
 | |
|       0% {
 | |
|         opacity: 0;
 | |
|       }
 | |
|       100% {
 | |
|         opacity: 1;
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     .fade-in-box {
 | |
|       opacity: 0;
 | |
|       animation: fadeIn 0.6s ease-in-out forwards;
 | |
|       margin-top: 2.5rem;
 | |
|     }
 | |
|   
 | |
|     /* 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>
 | |
|    |