www_ourverse_new/src/components/HeroFeature3.jsx
2024-10-10 15:56:48 +02:00

58 lines
2.8 KiB
JavaScript

import { CheckIcon } from '@heroicons/react/20/solid'
const features = [
{
name: 'Ease of Use',
description: 'Users with no prior design experience can easily generate complex 3D environments using simple text commands.',
},
{
name: 'Flexibility & Efficiency',
description: 'Modify entire environments or individual models with ease. The system quickly renders large-scale environments, saving time and offering a high degree of customization.',
},
{
name: 'Unlocking Creativity',
description: 'Create environments for gaming, education, or business without any technical skills. HeroVerse 3D enables fully immersive AAA game creation using only text commands.',
},
{
name: 'Architectural Visualization',
description: 'Architects can rapidly visualize ideas and create 3D models without extensive rendering software, saving significant time in the design process.',
},
{
name: 'Engaging Learning Environments',
description: 'Supports dynamic, interactive learning experiences for children and adults. Teachers can create virtual classrooms that adapt in real time for enhanced engagement.',
},
{
name: 'Dynamic Meetings',
description: 'Make virtual meetings more interactive by changing the environment with text commands or projecting yourself as a hologram, making meetings more lifelike.',
},
]
export default function HeroFeature3() {
return (
<div className="bg-gradient-to-b from-purple-50/10 to-purple-50/80 pt-24 py-24 sm:py-32 ">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 sm:gap-y-20 lg:mx-0 lg:max-w-none lg:grid-cols-3">
<div>
<h2 className="text-intro">Everything you need</h2>
<p className="mt-2 text-3xl font-bold tracking-tight h3-title-new sm:text-4xl">Multi-purpose Feature</p>
<p className="mt-6 text-base leading-7 text-gray-600">
<span className='text-gradient-new font-semibold'>The HeroVerse 3D </span> system offers several advantages that make it a powerful tool for creating virtual environments:
</p>
</div>
<dl className="col-span-2 grid grid-cols-1 gap-x-8 gap-y-10 text-base leading-7 text-gray-600 sm:grid-cols-2 lg:gap-y-16">
{features.map((feature) => (
<div key={feature.name} className="relative pl-9">
<dt className="font-semibold text-gradient-new">
<CheckIcon aria-hidden="true" className="absolute left-0 top-1 h-5 w-5 text-gradient-new" />
{feature.name}
</dt>
<dd className="mt-2">{feature.description}</dd>
</div>
))}
</dl>
</div>
</div>
</div>
)
}