2026-06-30 17:57:18 +05:30

96 lines
5.6 KiB
TypeScript

import React from 'react';
const WorkProcess = () => {
const settings = {
dots: false,
infinite: true,
speed: 500,
slidesToShow: 3,
slidesToScroll: 1,
autoplay: true,
arrows: false,
responsive: [
{
breakpoint: 991,
settings: {
slidesToShow: 2,
}
},
{
breakpoint: 767,
settings: {
slidesToShow: 2,
}
}
]
};
return (
<div className="case1-section-area sp1 pb-0" id="portfolio">
<div className="case-works-section-area">
<div className="container">
<div className="row">
<div className="col-lg-12">
<div className="others-widget-area">
<div className="row align-items-center">
<div className="col-xl-4 col-lg-12">
<div className="card-boxarea box1" data-aos="fade-up" data-aos-delay="100" data-aos-duration="800">
<h3>01</h3>
<div className="content-area">
<h4>Scalable App Architecture</h4>
<div className="space14"></div>
<p>We build apps with strong backend infrastructure that can handle growth, increased users, and future feature expansions without performance issues.</p>
</div>
</div>
<div className="space100"></div>
<div className="card-boxarea box2" data-aos="fade-up" data-aos-delay="300" data-aos-duration="900">
<h3>02</h3>
<div className="content-area">
<h4>High-Speed Performance</h4>
<div className="space14"></div>
<p>Optimized coding and lightweight frameworks ensure fast loading times, smooth navigation, and lag-free user experience.</p>
</div>
</div>
</div>
<div className="col-xl-4 col-lg-12 d-flex align-items-center justify-content-center">
<div className="images" data-aos="zoom-in" data-aos-duration="1000">
<img loading="lazy" src="/assets/img-app/elements/elements12.png" alt="Decorative circle element" className="elements12" />
<img loading="lazy" src="/assets/img-app/elements/elements13.png" alt="Decorative circle element" className="elements13" />
<img loading="lazy" src="/assets/img-app/elements/elements14.png" alt="Decorative circle element" className="elements14" />
<img loading="lazy" src="/assets/img-app/elements/elements15.png" alt="Decorative circle element" className="elements15" />
<div className="img1 shadow-lg">
<img loading="lazy" src="/assets/img-app/home/section5/bottom-circle.webp" alt="App development process illustration" />
</div>
</div>
</div>
<div className="col-xl-4 col-lg-12">
<div className="card-boxarea box3" data-aos="fade-up" data-aos-delay="200" data-aos-duration="800">
<h3>03</h3>
<div className="content-area2">
<h4>Secure & Protected Systems</h4>
<div className="space14"></div>
<p>Advanced security protocols, data encryption, secure APIs, and authentication systems protect your users and business data.</p>
</div>
</div>
<div className="space100"></div>
<div className="card-boxarea box4" data-aos="fade-up" data-aos-delay="400" data-aos-duration="1000">
<h3>04</h3>
<div className="content-area2">
<h4>App Store & Play Store Deployment</h4>
<div className="space14"></div>
<p>Complete assistance with submission, compliance, approval process, and successful publishing on both platforms.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
);
};
export default WorkProcess;