lumeweb.com/src/components/Vision/Jumbotron/Jumbotron.astro

19 lines
459 B
Plaintext

---
import backgroundSrc from "/src/assets/vision-jumbotron-bg.png";
---
<section
id="jumbotron"
class="relative w-full h-[420px] flex items-center justify-center"
>
<img
src={backgroundSrc.src}
class="-z-10 absolute top-[10px] left-1/2 -translate-x-1/2 w-[100em] max-w-none"
/>
<h1
class="font-display2 text-4xl px-10 md:px-20 lg:px-40 lg:text-5xl w-full text-center"
>
Easy access to an open, user-owned web.
</h1>
</section>