Files
www_threefold_io/templates/partials/home/hero.html
2025-04-30 13:38:43 +03:00

63 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="relative flex justify-center items-center isolate overflow-hidden bg-transparent h-screen">
<div class="px-4 lg:px-8">
<!-- logo option
<div class="flex justify-center mb-16 fade-in">
<img src="/images/white_threefold.png" alt="ThreeFold Logo" class="h-32">
</div>
-->
<div class="mx-auto max-w-4xl text-center">
<h2 class="text-balance font-normal tracking-tight leading-tight text-white lg:text-6xl text-3xl fade-in">
Built for Everyone by Everyone, Everywhere</h2>
<p class="mx-auto mt-8 max-w-3xl text-pretty lg:text-2xl text-lg font-light text-gray-200 fade-in">ThreeFold is
a fully operational, decentralized internet infrastructure deployed locally, scalable globally, and owned and powered by the people.</p>
{# <h2 class="text-balance font-normal tracking-tight text-white lg:text-6xl text-6xl fade-in">Web4</h2> #}
<br>
<div class="mt-6 flex items-center justify-center gap-x-8">
<a href="/what"
class="fade-in rounded-2xl bg-white px-4 py-2.5 text-sm font-semibold text-black shadow-sm hover:text-gray-800 hover:bg-green focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2">What
We've Built</a>
<a href="/why" class="fade-in text-base font-semibold text-white hover:text-green ">Why We Do It<span
aria-hidden="true"></span></a>
<a href="https://paragraph.com/@ev3news/threefold-rearchitecting-the-internet" class="fade-in text-base font-semibold text-white hover:text-green ">Read EV3's Report<span
aria-hidden="true"></span></a>
</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>