Files
dev-chiefworks 2ce13271d8 first commit
2024-01-10 11:05:21 -05:00

49 lines
1.6 KiB
React
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Image from "next/image";
import React from "react";
const BlockFeaturesOne = () => {
return (
<div className="block-style-thirtyEight mb-200 md-mb-150">
<div className="row align-items-center">
<div className="col-xl-5 col-lg-6" data-aos="fade-right">
<div className="title-style-sixteen">
<div className="upper-title">Easy to use,</div>
<h2>
READY, <br /> HEADSET, GO
</h2>
</div>
<p className="mt-30 pe-xl-5">
No wires means you're not stuck playing Quest 2 at home. Youre free
to take all the games, workouts, shows, experiences and more on the
road with you.
</p>
</div>
<div
className="col-xl-7 col-lg-5 col-md-8 ms-auto text-end"
data-aos="fade-left"
>
<div className="img-meta d-inline-block position-relative md-mt-70">
<Image width={577} height={500} style={{width:'100%',height:'fit-content'}} src="/images/media/img_120.jpg" alt="media" />
<Image width="141" height="160"
src="/images/shape/244.svg"
alt="media"
className="shapes shape-one"
data-aos="fade-down"
data-aos-delay="300"
/>
<Image width={286} height={209}
src="/images/media/img_121.png"
alt="media"
className="shapes shape-two"
data-aos="fade-up"
data-aos-delay="300"
/>
</div>
</div>
</div>
</div>
);
};
export default BlockFeaturesOne;