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

17 lines
428 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 lg:text-5xl w-full text-center">
Easy access to an open, user-owned web.
</h1>
</section>