Files
CHIEFSOFT\ameye d8c7ec4866 first commit
2025-02-12 23:25:43 -05:00

116 lines
3.9 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 FancyTextBlockThree = () => {
return (
<div className="row no-gutters">
<div className="col-lg-6">
<div className="feature-content light-bg">
<div className="header" data-aos="fade-up" data-aos-duration="1200">
<h3>Individual</h3>
<p className="font-rubik">
Wzprenr Investor Network is a global community that extends the
reach of leading
</p>
</div>
{/* /.header */}
<div
className="feature-list d-flex"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="100"
>
<div className="icon-box d-flex align-items-center justify-content-center">
<Image width="24" height="24" src="/images/icon/07.svg" alt="icon" />
</div>
<div className="text-meta">
<h4>Time well spent</h4>
<p>
Facilitates access to capital entrepreneurs through road show
preparation.
</p>
</div>
{/* /.text-meta */}
</div>
{/* /.feature-list */}
<div
className="feature-list d-flex"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="200"
>
<div className="icon-box d-flex align-items-center justify-content-center">
<Image width="24" height="24" src="/images/icon/08.svg" alt="icon" />
</div>
<div className="text-meta">
<h4>Quietly powerful</h4>
<p>
Let intuition be your guide. We get out of your way and fight
the friction in your teams workflow so you dont have to.
</p>
</div>
{/* /.text-meta */}
</div>
{/* /.feature-list */}
</div>
{/* /.feature-content */}
</div>
<div className="col-lg-6">
<div className="feature-content dark-bg">
<div className="header" data-aos="fade-up" data-aos-duration="1200">
<h3>Big Company</h3>
<p className="font-rubik">
Wzprenr Investor Network is a global community that extends the
reach of leading
</p>
</div>
{/* /.header */}
<div
className="feature-list d-flex"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="100"
>
<div className="icon-box d-flex align-items-center justify-content-center">
<Image width="24" height="24" src="/images/icon/07.svg" alt="icon" />
</div>
<div className="text-meta">
<h4>Make your work easy</h4>
<p>
Remove the fog. We dont want to be another task to complete or
a tool to decipher.
</p>
</div>
{/* /.text-meta */}
</div>
{/* /.feature-list */}
<div
className="feature-list d-flex"
data-aos="fade-up"
data-aos-duration="1200"
data-aos-delay="200"
>
<div className="icon-box d-flex align-items-center justify-content-center">
<Image width="24" height="24" src="/images/icon/08.svg" alt="icon" />
</div>
<div className="text-meta">
<h4>Build together</h4>
<p>
Software is made better together. From task completion to
product launch, we celebrate team wins big and small.
</p>
</div>
{/* /.text-meta */}
</div>
{/* /.feature-list */}
</div>{" "}
{/* /.feature-content */}
</div>
</div>
);
};
export default FancyTextBlockThree;