123 lines
7.8 KiB
JavaScript
123 lines
7.8 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">Right strategies & implementations</h2>
|
|
{/* Text */}
|
|
<p>Sodales tempor sapien quaerat ipsum undo congue laoreet turpis neque auctor turpis
|
|
vitae dolor luctus placerat magna and ligula cursus purus vitae purus an ipsum suscipit
|
|
</p>
|
|
{/* Small Title */}
|
|
<h5 className="s-24 w-700">Get more done in less time</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>Magna dolor luctus at egestas sapien</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>Cursus purus suscipit vitae cubilia magnis volute egestas vitae sapien
|
|
turpis ultrice auctor congue varius magnis
|
|
</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">Volute turpis dolores and sagittis congue</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>Sodales tempor sapien quaerat congue eget ipsum laoreet turpis neque auctor
|
|
vitae eros dolor luctus placerat magna ligula cursus and purus pretium
|
|
</p>
|
|
{/* Small Title */}
|
|
<h5 className="s-24 w-700 h5-title">The smarter way to work</h5>
|
|
{/* Text */}
|
|
<p className="mb-0">Sapien tempor sodales quaerat ipsum undo congue laoreet turpis neque
|
|
auctor turpis vitae dolor luctus placerat magna and ligula cursus purus vitae
|
|
</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>
|
|
</>
|
|
)
|
|
} |