Files
CHIEFSOFT\ameye 24e91359b1 Fix footer menyu
2026-03-21 12:47:55 -04:00

78 lines
4.5 KiB
JavaScript

export default function MermsFeatures2() {
return (
<>
<section id="features-1" className="pt-100 features-section division">
<div className="container">
{/* SECTION TITLE */}
<div className="row justify-content-center">
<div className="col-md-10 col-lg-9">
<div className="section-title mb-80">
{/* Title */}
<h2 className="s-50 w-700">All-in-One Cloud Platform for Practice Management.</h2>
{/* Text */}
<p className="s-21 color--grey">Unified AI-powered solutions for everything that matters to your online reputation and engagement.</p>
</div>
</div>
</div>
{/* FEATURES-1 WRAPPER */}
<div className="fbox-wrapper text-center">
<div className="row row-cols-1 row-cols-md-3">
{/* FEATURE BOX #1 */}
<div className="col">
<div className="fbox-1 fb-1 wow fadeInUp">
{/* Image */}
<div className="fbox-img h-175">
<img className="img-fluid light-theme-img" src="/images/f_01.png" alt="feature-image" />
<img className="img-fluid dark-theme-img" src="/images/f_01_dark.png" alt="feature-image" />
</div>
{/* Text */}
<div className="fbox-txt">
<h6 className="s-22 w-700">Intuitive Dashboard</h6>
<p>Smart dashboard that adapts to focus processes and tasks that optimized your targets.
</p>
</div>
</div>
</div> {/* END FEATURE BOX #1 */}
{/* FEATURE BOX #2 */}
<div className="col">
<div className="fbox-1 fb-2 wow fadeInUp">
{/* Image */}
<div className="fbox-img h-175">
<img className="img-fluid light-theme-img" src="/images/f_05.png" alt="feature-image" />
<img className="img-fluid dark-theme-img" src="/images/f_05_dark.png" alt="feature-image" />
</div>
{/* Text */}
<div className="fbox-txt">
<h6 className="s-22 w-700">Effortless Integration</h6>
<p>With real-time API interfaces, we have dozens of ways to slice and analyze your data.
</p>
</div>
</div>
</div> {/* END FEATURE BOX #2 */}
{/* FEATURE BOX #3 */}
<div className="col">
<div className="fbox-1 fb-3 wow fadeInUp">
{/* Image */}
<div className="fbox-img h-175">
<img className="img-fluid light-theme-img" src="/images/f_02.png" alt="feature-image" />
<img className="img-fluid dark-theme-img" src="/images/f_02_dark.png" alt="feature-image" />
</div>
{/* Text */}
<div className="fbox-txt">
<h6 className="s-22 w-700">Engagement Analysis</h6>
<p>Optimize your online profiles across search engines, maps, and high-visibility.
</p>
</div>
</div>
</div> {/* END FEATURE BOX #3 */}
</div> {/* End row */}
</div> {/* END FEATURES-1 WRAPPER */}
</div> {/* End container */}
</section>
</>
)
}