2025-04-08 14:37:17 +07:00

75 lines
4.4 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 Link from 'next/link'
export default function Services2() {
return (
<>
<section className="services__area-two">
<div className="container">
<div className="row">
<div className="col-lg-6">
<div className="section-title white-title mb-50 tg-heading-subheading animation-style3">
<span className="sub-title">Why We Are The Best</span>
<h2 className="title tg-element-title">Lets Discover Our Service Features Charter</h2>
</div>
</div>
</div>
<div className="row justify-content-center gutter-24">
<div className="col-xl-3 col-lg-4 col-md-6">
<div className="services__item-two">
<div className="services__icon-two">
<i className="flaticon-pie-chart" />
</div>
<div className="services__content-two">
<h2 className="title"><Link href="/services-details">Business Analytics</Link></h2>
<p>Morem area are psum dolor sitteme odern sectet aweur adipiscing always.</p>
<Link href="/services-details" className="btn">Read More</Link>
</div>
</div>
</div>
<div className="col-xl-3 col-lg-4 col-md-6">
<div className="services__item-two">
<div className="services__icon-two">
<i className="flaticon-budget" />
</div>
<div className="services__content-two">
<h2 className="title"><Link href="/services-details">Investment</Link></h2>
<p>Morem area are psum dolor sitteme odern sectet aweur adipiscing always.</p>
<Link href="/services-details" className="btn">Read More</Link>
</div>
</div>
</div>
<div className="col-xl-3 col-lg-4 col-md-6">
<div className="services__item-two">
<div className="services__icon-two">
<i className="flaticon-piggy-bank" />
</div>
<div className="services__content-two">
<h2 className="title"><Link href="/services-details">Tax Advisory</Link></h2>
<p>Morem area are psum dolor sitteme odern sectet aweur adipiscing always.</p>
<Link href="/services-details" className="btn">Read More</Link>
</div>
</div>
</div>
<div className="col-xl-3 col-lg-4 col-md-6">
<div className="services__item-two">
<div className="services__icon-two">
<i className="flaticon-target" />
</div>
<div className="services__content-two">
<h2 className="title"><Link href="/services-details">Target Market</Link></h2>
<p>Morem area are psum dolor sitteme odern sectet aweur adipiscing always.</p>
<Link href="/services-details" className="btn">Read More</Link>
</div>
</div>
</div>
</div>
</div>
<div className="services__shape-wrap">
<img src="/assets/img/images/h2_services_shape01.png" alt="" data-aos="fade-right" data-aos-delay={400} />
<img src="/assets/img/images/h2_services_shape02.png" alt="" data-aos="fade-left" data-aos-delay={400} />
</div>
</section>
</>
)
}