2026-03-04 15:45:10 +05:30

34 lines
1.5 KiB
TypeScript

import React from 'react';
import Link from 'next/link';
const CallAreaThree: React.FC = () => {
return (
<section className="call-area-three parallax-section section-space-top">
<div
className="call-area-three__bg parallax-bg"
style={{ backgroundImage: 'url(https://bracketweb.com/pelocishtml/assets/images/backgrounds/counter-area-two-bg.png)' }}
></div>
<div className="container">
<div className="call-area-three__content">
<h2 className="call-area-three__title wow fadeInUp" data-wow-delay="0.1s">
MetatronCube Finished this Achivement <br /> in 10 Years
</h2>
{/* <p className="call-area-three__text wow fadeInUp" data-wow-delay="0.2s">
Business tailored design, management &amp; support services Business agency, sed <br />
tempor &nbsp;majority have in some we form, by injected solution.
</p>
<div className="call-area-three__btn-wrapper wow fadeInUp" data-wow-delay="0.3s">
<Link href="/contact" className="pelocis-btn pelocis-btn--premium">
<span>
Get A Free Quote <i className="icon-right-arrow-white"></i>
</span>
</Link>
</div> */}
</div>
</div>
</section>
);
};
export default CallAreaThree;