39 lines
1.5 KiB
JavaScript
39 lines
1.5 KiB
JavaScript
|
|
export default function Usecases() {
|
|
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-[#302b4b] via-[#443b62]/75 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-gradient sm:text-4xl">
|
|
Exploring Impactful<br/>Use Cases from <br/>Real-life Applications
|
|
</h2>
|
|
<p className="mt-6 text-lg max-w-xl leading-8 text-purple-50">
|
|
Discover how OurVerse uniquely addresses challenges and fosters innovation in education, healthcare, environmental conservation,
|
|
and economic empowerment with specific, real-world applications of our technology.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-10 pb-8 flex items-center gap-x-6">
|
|
<a
|
|
href="#"
|
|
className="rounded-2xl btn-gradient-dark2 font-semibold px-3.5 py-2.5"
|
|
>
|
|
Join OurVerse
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|