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

28 lines
1.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 PricingTable from '../elements/PricingTable'
export default function Pricing1() {
return (
<>
<section className="pricing__area pricing__bg" data-background="/assets/img/bg/pricing_bg.jpg">
<div className="container">
<div className="row justify-content-center">
<div className="col-xl-5">
<div className="section-title text-center mb-30 tg-heading-subheading animation-style3">
<span className="sub-title">Flexible Pricing Plan</span>
<h2 className="title tg-element-title">Weve Offered The Best Pricing For You</h2>
</div>
</div>
</div>
<div className="pricing__item-wrap">
<PricingTable />
</div>
</div>
<div className="pricing__shape-wrap">
<img src="/assets/img/images/pricing_shape01.png" alt="" data-aos="fade-right" data-aos-delay={400} />
<img src="/assets/img/images/pricing_shape02.png" alt="" data-aos="fade-left" data-aos-delay={400} />
</div>
</section>
</>
)
}