96 lines
6.7 KiB
JavaScript
96 lines
6.7 KiB
JavaScript
import { useTranslations } from "next-intl"
|
|
|
|
export default function MermsFeaturesSectionTwo() {
|
|
const t = useTranslations("FeaturesSectionTwo")
|
|
return (
|
|
<>
|
|
<section id="features-12" className="shape--bg shape--white-400 pt-100 features-section division">
|
|
<div className="container">
|
|
<div className="row d-flex align-items-center">
|
|
<div className="col-md-5">
|
|
<div className="txt-block left-column wow fadeInRight">
|
|
<h2 className="s-46 w-700">{t("title")}</h2>
|
|
<p>{t("description")}</p>
|
|
<ul className="simple-list">
|
|
<li className="list-item">
|
|
<p>{t("list1")}</p>
|
|
</li>
|
|
<li className="list-item">
|
|
<p className="mb-0">{t("list2")}</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div className="col-md-7">
|
|
<div className="fbox-12-wrapper wow fadeInLeft">
|
|
<div className="row">
|
|
<div className="col-md-6">
|
|
<div id="fb-12-1" className="fbox-12 bg--white-100 block-shadow r-12 mb-30">
|
|
<div className="fbox-ico ico-50">
|
|
<div className="shape-ico color--theme">
|
|
<span className="flaticon-layers-1" />
|
|
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<div className="fbox-txt">
|
|
<h5 className="s-20 w-700">{t("websiteTitle")}</h5>
|
|
<p>{t("websiteDesc")}</p>
|
|
</div>
|
|
</div>
|
|
<div id="fb-12-2" className="fbox-12 bg--white-100 block-shadow r-12">
|
|
<div className="fbox-ico ico-50">
|
|
<div className="shape-ico color--theme">
|
|
<span className="flaticon-click-1" />
|
|
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<div className="fbox-txt">
|
|
<h5 className="s-20 w-700">{t("ecosystemTitle")}</h5>
|
|
<p>{t("ecosystemDesc")}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="col-md-6">
|
|
<div id="fb-12-3" className="fbox-12 bg--white-100 block-shadow r-12 mb-30">
|
|
<div className="fbox-ico ico-50">
|
|
<div className="shape-ico color--theme">
|
|
<span className="flaticon-prioritize" />
|
|
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<div className="fbox-txt">
|
|
<h5 className="s-20 w-700">{t("addonsTitle")}</h5>
|
|
<p>{t("addonsDesc")}</p>
|
|
</div>
|
|
</div>
|
|
<div id="fb-12-4" className="fbox-12 bg--white-100 block-shadow r-12">
|
|
<div className="fbox-ico ico-50">
|
|
<div className="shape-ico color--theme">
|
|
<span className="flaticon-analytics" />
|
|
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M69.8,-23C76.3,-2.7,57.6,25.4,32.9,42.8C8.1,60.3,-22.7,67,-39.1,54.8C-55.5,42.7,-57.5,11.7,-48.6,-11.9C-39.7,-35.5,-19.8,-51.7,5.9,-53.6C31.7,-55.6,63.3,-43.2,69.8,-23Z" transform="translate(100 100)" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<div className="fbox-txt">
|
|
<h5 className="s-20 w-700">{t("unifiedTitle")}</h5>
|
|
<p>{t("unifiedDesc")}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</>
|
|
)
|
|
}
|