Files
MermsWebsite2025/pages/features.js
T
2025-02-27 18:54:35 +01:00

117 lines
7.6 KiB
JavaScript

import CounterUp from "../components/elements/CounterUp"
import VideoPopup from "../components/elements/VidepPopup"
import Layout from "../components/layout/Layout"
import Link from "next/link"
import MermsAboutFeautures from "../components/sections/MermsAboutFeautures";
import MermsBanner from "../components/sections/MermsBanner";
import MermsFeatureSection4 from "../components/sections/MermsFeatureSection4";
import MermsFeaturesSection1 from "../components/sections/MermsFeaturesSection1";
import MermsFeaturesSectionTwo from "../components/sections/MermsFeaturesSectionTwo";
export default function Home() {
return (
<>
<Layout headerStyle={1} footerStyle={3} headerCls="navbar-dark inner-page-header">
<div>
<section className="pt-100 ct-02 content-section division">
<div className="container">
{/* SECTION CONTENT (ROW) */}
<div className="row d-flex align-items-center">
{/* IMAGE BLOCK */}
<div className="col-md-6">
<div className="img-block left-column wow fadeInRight">
<img className="img-fluid" src="/images/img-08.png" alt="content-image" />
</div>
</div>
{/* TEXT BLOCK */}
<div className="col-md-6">
<div className="txt-block right-column wow fadeInLeft">
{/* Section ID */}
<span className="section-id">Strategies That Work</span>
{/* Title */}
<h2 className="s-46 w-700">Modern Strategies &amp; implementations</h2>
{/* Text */}
<p>In the agent world, we fit your solution to what works with attention to how your audience wants to reach you. We are an AI-first solution to your online and pipeline optimization practice.</p>
{/* Small Title */}
<h5 className="s-24 w-700">Providing solutions that provable work</h5>
{/* CONTENT BOX #1 */}
<div className="cbox-1 ico-15">
<div className="ico-wrap color--theme">
<div className="cbox-1-ico"><span className="flaticon-check" /></div>
</div>
<div className="cbox-1-txt">
<p>Made to suit different circumstances or requirements with ease.</p>
</div>
</div>
{/* CONTENT BOX #2 */}
<div className="cbox-1 ico-15">
<div className="ico-wrap color--theme">
<div className="cbox-1-ico"><span className="flaticon-check" /></div>
</div>
<div className="cbox-1-txt">
<p>Promote your brand, accomplish tasks quickly and effectively, and maximize productivity.</p>
</div>
</div>
{/* CONTENT BOX #3 */}
<div className="cbox-1 ico-15">
<div className="ico-wrap color--theme">
<div className="cbox-1-ico"><span className="flaticon-check" /></div>
</div>
<div className="cbox-1-txt">
<p className="mb-0">Create and grow your digital community and drive relevant traffic.</p>
</div>
</div>
</div>
</div> {/* END TEXT BLOCK */}
</div> {/* END SECTION CONTENT (ROW) */}
</div> {/* End container */}
</section>
<MermsFeaturesSectionTwo />
<MermsFeaturesSection1 />
<MermsFeatureSection4 />
<MermsAboutFeautures />
<section className="pt-100 ws-wrapper content-section">
<div className="container">
<div className="bc-1-wrapper bg--white-400 bg--fixed r-16">
<div className="section-overlay">
<div className="row d-flex align-items-center">
{/* TEXT BLOCK */}
<div className="col-md-6 order-last order-md-2">
<div className="txt-block left-column wow fadeInRight">
{/* Section ID */}
<span className="section-id">Enhance Engagement</span>
{/* Title */}
<h2 className="s-46 w-700">Automate your way to success</h2>
{/* Text */}
<p>Leverage our automation tools to present and manage your healthcare online presence and your practice tools with AI-Assist.
</p>
{/* Small Title */}
<h5 className="s-24 w-700 h5-title">Modern & Smarter for your Practice</h5>
{/* Text */}
<p className="mb-0">Up to date tools to manage all you need for effective online presence and your practice management. Effective practice campaign, easy adoptions of tools and visibility to trends.
</p>
</div>
</div> {/* END TEXT BLOCK */}
{/* IMAGE BLOCK */}
<div className="col-md-6 order-first order-md-2">
<div className="img-block right-column wow fadeInLeft">
<img className="img-fluid" src="/images/img-05.png" alt="content-image" />
</div>
</div>
</div> {/* End row */}
</div> {/* End section overlay */}
</div> {/* End content wrapper */}
</div> {/* End container */}
</section> {/* END BOX CONTENT */}
<hr className="divider" />
<MermsBanner />
</div>
</Layout>
</>
)
}