Files
www_ourverse_new/src/components/Communhero.jsx
2024-10-15 15:42:14 +02:00

42 lines
1.8 KiB
JavaScript

import { LifebuoyIcon, NewspaperIcon, PhoneIcon } from '@heroicons/react/24/outline'
export default function Communhero() {
return (
<div className="relative isolate overflow-hidden bg-purple-900 py-24 sm:py-32">
{/* Background image with lower z-index */}
<img
alt=""
src="/images/bgimage3.jpg"
className="absolute inset-0 -z-20 h-full w-full object-cover object-right md:object-center"
/>
{/* Gradient overlay with a slightly higher z-index */}
<div className="absolute inset-0 bg-gradient-to-r from-[#302b4b] via-[#443b62]/85 to-white/0 -z-10"></div>
{/* Content container with a higher z-index */}
<div className="relative z-10 mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto max-w-xl lg:mx-0">
<h2 className="mt-2 lg:text-5xl font-semibold tracking-tight text-white text-3xl">
Create the Future of Virtual World Together
</h2>
<p className="mt-6 section-text-light font-display max-w-xl text-purple-50">
Join a global movement where visionaries, creators, and innovators come together to shape immersive digital experiences.
</p>
<p className="mt-6 section-text-light font-display max-w-xl text-purple-50">
Powered by cutting-edge technology and collaboration, OurVerse is transforming the way we connect, learn,
and build in virtual spaces. Be part of the journey to redefine the digital future.
</p>
<div className="mt-10 pb-8 flex items-center gap-x-6">
<a
href="https://portal.ourverse.tf" target='_blank'
className="rounded-2xl btn-dark font-semibold px-3.5 py-2.5"
>
Join OurVerse
</a>
</div>
</div>
</div>
</div>
)
}