language implementation MERMS

This commit is contained in:
2026-05-23 20:49:12 -04:00
parent d13d655cf6
commit 439e322abc
51 changed files with 1580 additions and 650 deletions
+8 -16
View File
@@ -1,40 +1,32 @@
import { useTranslations } from "next-intl"
export default function MermsAbout() {
const t = useTranslations("About")
return (
<>
<section id="merms-about" className="pt-100 ct-03 content-section division">
<div className="container">
<div className="row d-flex align-items-center">
{/* IMAGE BLOCK */}
<div className="col-md-6 col-lg-7">
<div className="img-block left-column wow fadeInRight">
<img className="img-fluid" src="/images/img-14.png" alt="content-image" />
</div>
</div>
{/* TEXT BLOCK */}
<div className="col-md-6 col-lg-5">
<div className="txt-block right-column wow fadeInLeft">
{/* Section ID */}
{/*<span className="section-id">Control Data Access</span>*/}
{/* Title */}
<h2 className="s-46 w-700">The worldview of your practice matters.</h2>
{/* List */}
<h2 className="s-46 w-700">{t("title")}</h2>
<ul className="simple-list">
<li className="list-item">
<p>Actively or passively, your potential clients trust and evaluate your practice daily.
</p>
<p>{t("list1")}</p>
</li>
<li className="list-item">
<p className="mb-0">
In your profession that feeds heavily on trust and image, MERMS solutions actively guide and engage you with this task
</p>
<p className="mb-0">{t("list2")}</p>
</li>
</ul>
</div>
</div> {/* END TEXT BLOCK */}
</div> {/* End row */}
</div> {/* End container */}
</div>
</div>
</div>
</section>
</>
)