91 lines
4.8 KiB
JavaScript
91 lines
4.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";
|
|
import MermsEngageBox from "../components/sections/MermsEngageBox";
|
|
import { useTranslations } from "next-intl";
|
|
export default function Home() {
|
|
const t = useTranslations("FeaturesPage")
|
|
|
|
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">
|
|
<span className="section-id">{t("sectionId")}</span>
|
|
<h2 className="s-46 w-700">{t("title")}</h2>
|
|
<p>{t("description")}</p>
|
|
<h5 className="s-24 w-700">{t("subtitle")}</h5>
|
|
<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>{t("check1")}</p>
|
|
</div>
|
|
</div>
|
|
<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>{t("check2")}</p>
|
|
</div>
|
|
</div>
|
|
<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">{t("check3")}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> {/* END TEXT BLOCK */}
|
|
</div> {/* END SECTION CONTENT (ROW) */}
|
|
</div> {/* End container */}
|
|
</section>
|
|
<hr className="divider" />
|
|
<MermsFeaturesSectionTwo />
|
|
<hr className="divider" />
|
|
<MermsFeaturesSection1 />
|
|
<hr className="divider" />
|
|
<MermsFeatureSection4 />
|
|
<hr className="divider" />
|
|
<MermsAboutFeautures />
|
|
<hr className="divider" />
|
|
<MermsEngageBox />
|
|
<hr className="divider" />
|
|
<MermsBanner />
|
|
</div>
|
|
</Layout>
|
|
</>
|
|
)
|
|
}
|
|
export async function getStaticProps({ locale }) {
|
|
const { getMessages } = await import('../utils/getMessages')
|
|
return {
|
|
props: {
|
|
locale,
|
|
messages: await getMessages(locale),
|
|
}
|
|
}
|
|
}
|