95 lines
3.5 KiB
JavaScript
95 lines
3.5 KiB
JavaScript
import {
|
|
ArrowPathIcon,
|
|
CloudArrowUpIcon,
|
|
Cog6ToothIcon,
|
|
FingerPrintIcon,
|
|
LockClosedIcon,
|
|
ServerIcon,
|
|
CubeIcon,
|
|
DocumentMagnifyingGlassIcon,
|
|
CpuChipIcon,
|
|
ShieldCheckIcon,
|
|
FilmIcon,
|
|
GlobeAltIcon,
|
|
RocketLaunchIcon,
|
|
} from '@heroicons/react/20/solid'
|
|
|
|
const features = [
|
|
{
|
|
name: '3D Models Library',
|
|
description: 'Access a vast library of 3D models to enrich your virtual environment with diverse objects and elements.',
|
|
icon: CubeIcon,
|
|
},
|
|
{
|
|
name: '3D Templates Library.',
|
|
description: 'Kickstart your creation process with ready-made 3D templates designed for various virtual experiences.',
|
|
icon: DocumentMagnifyingGlassIcon,
|
|
},
|
|
{
|
|
name: 'AI Metaverse Builder.',
|
|
description: 'Leverage AI-powered tools to effortlessly design and construct your unique metaverse.',
|
|
icon: CpuChipIcon,
|
|
},
|
|
{
|
|
name: 'Advanced security.',
|
|
description: 'Leverage AI-powered tools to effortlessly design and construct your unique metaverse.',
|
|
icon: ShieldCheckIcon,
|
|
},
|
|
{
|
|
name: 'Behaviors and Animations',
|
|
description: 'Add life to your creations with customizable behaviors and animations that enhance interactivity.',
|
|
icon: FilmIcon,
|
|
},
|
|
{
|
|
name: 'Virtual Portal.',
|
|
description: 'Seamlessly connect different parts of your virtual world with dynamic, interactive portals. ',
|
|
icon: GlobeAltIcon,
|
|
},
|
|
]
|
|
|
|
export default function Build() {
|
|
return (
|
|
<div className=" lg:pt-16 lg:pb-24 pt-24 bg-gradient-to-b from-purple-50/80 to-purple-50/10 ">
|
|
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
|
<div className="mx-auto max-w-4xl sm:text-center">
|
|
<p className="mt-2 h3-title-new">Build Your Own Verse</p>
|
|
<p className="mt-4 lg:max-w-3xl section-text font-display ">
|
|
Create and customize your virtual world with powerful tools and resources that make building and managing your digital space easy and intuitive.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="relative overflow-hidden pt-16">
|
|
<div className="mx-auto max-w-6xl px-6 lg:px-8">
|
|
{/* embed Video */}
|
|
<video
|
|
autoPlay
|
|
loop
|
|
muted
|
|
playsInline
|
|
className="relative w-full h-full overflow-hidden rounded-lg shadow-lg"
|
|
>
|
|
<source src="/videos/ourverse3.mp4" type="video/mp4" />
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
<div aria-hidden="true" className="relative">
|
|
<div className="absolute -inset-x-20 bottom-0 bg-gradient-to-t from-white pt-[7%]" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mx-auto lg:mt-16 max-w-7xl px-6 mt-20 md:mt-24 lg:px-8">
|
|
<dl className="mx-auto grid max-w-2xl grid-cols-1 gap-x-6 gap-y-10 text-base leading-7 text-purple-900 sm:grid-cols-2 lg:mx-0 lg:max-w-none lg:grid-cols-3 lg:gap-x-8 lg:gap-y-10">
|
|
{features.map((feature) => (
|
|
<div key={feature.name} className="relative pl-9">
|
|
<dt className="inline font-semibold text-purple-700">
|
|
<feature.icon aria-hidden="true" className="absolute left-1 top-1 h-5 w-5 text-purple-700" />
|
|
{feature.name}
|
|
</dt>{' '}
|
|
<dd className="inline">{feature.description}</dd>
|
|
</div>
|
|
))}
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|