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

42 lines
1.4 KiB
React

import Image from "next/image";
import React from "react";
const BlockFeaturesTwo = () => {
return (
<div className="block-style-thirtyEight">
<div className="row align-items-center">
<div
className="col-xl-5 col-lg-6 order-lg-last ms-auto"
data-aos="fade-left"
>
<div className="title-style-sixteen">
<div className="upper-title">Gaming</div>
<h2>PLAY FAVORITES GAMES.</h2>
</div>
<p className="mt-30 pe-xl-5">
From multiplayer games to unique experiences to joining up with
friends at a live show or instructor-led workout, opportunities to
meet & connect with others.
</p>
</div>
<div className="col-xl-7 col-lg-5 col-md-8" data-aos="fade-right">
<div className="img-meta d-inline-block position-relative md-mt-70">
<Image width={600} height={500} style={{width:'100%',height:'fit-content'}} src="/images/media/img_122.jpg" alt="media" />
<Image
width={259}
height={310}
src="/images/media/img_123.png"
alt="media"
className="shapes shape-three"
data-aos="fade-up"
data-aos-delay="300"
/>
</div>
</div>
</div>
</div>
);
};
export default BlockFeaturesTwo;