Files
2025-07-30 13:44:47 +05:30

96 lines
3.3 KiB
JavaScript
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 React from "react";
import Image from "next/image";
export default function Features() {
return (
<div className="tf-container-2 tf-spacing-24">
<div className="heading-secetion text-center mb_60">
<h1 className="heading-title text_dark fw-6 split-text effect-right">
The core values define our commitment
</h1>
</div>
<div className="tf-grid-layout md-col-2">
<div className="tf-box-icon style-4 effect-icon">
<div className="heading d-flex justify-content-between gap_12">
<h5 className="text_dark fw-6">
Commitment to intergrity <br />
and ethical practices
</h5>
<div className="icon">
<Image
alt="icon"
src="/images/box-icon/line-chart.svg"
width={48}
height={48}
/>
</div>
</div>
<p className="text-body-1 text_dark">
The company always puts the client's interests first, ensuring
transparency and honesty in all financial recommendations
</p>
</div>
<div className="tf-box-icon style-4 effect-icon">
<div className="heading d-flex justify-content-between gap_12">
<h5 className="text_dark fw-6">
Transparency in every <br />
communication
</h5>
<div className="icon">
<Image
alt="icon"
src="/images/box-icon/handshake.svg"
width={48}
height={48}
/>
</div>
</div>
<p className="text-body-1 text_dark">
We ensure that every financial recommendation is clearly explained,
empowering clients to make informed choices
</p>
</div>
<div className="tf-box-icon style-4 effect-icon">
<div className="heading d-flex justify-content-between gap_12">
<h5 className="text_dark fw-6">
Client-centered approach <br />
focused on your needs
</h5>
<div className="icon">
<Image
alt="icon"
src="/images/box-icon/line-radar.svg"
width={39}
height={39}
/>
</div>
</div>
<p className="text-body-1 text_dark">
We prioritize building long-term relationships by understanding each
clients unique financial goals
</p>
</div>
<div className="tf-box-icon style-4 effect-icon">
<div className="heading d-flex justify-content-between gap_12">
<h5 className="text_dark fw-6">
Dedicated to Long-term <br />
financial success
</h5>
<div className="icon">
<Image
alt="icon"
src="/images/box-icon/line-board.svg"
width={48}
height={48}
/>
</div>
</div>
<p className="text-body-1 text_dark">
We develop comprehensive financial plans that are built for
sustainability, guiding clients toward lasting financial security
</p>
</div>
</div>
</div>
);
}