Files
www_ourverse_new/src/components/Communhero.jsx
2024-09-17 13:45:34 +02:00

32 lines
1.4 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/bgimage2.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-[#443b62] 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-2xl lg:mx-0">
<h2 className="mt-2 text-3xl font-semibold tracking-tight text-white sm:text-4xl">
A United Community Creating the Future of Virtual Worlds
</h2>
<p className="mt-6 text-lg leading-8 text-purple-50">
Join a global movement where visionaries, creators, and innovators come together to shape immersive digital experiences.
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>
</div>
</div>
)
}