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
+19 -15
View File
@@ -8,7 +8,9 @@ 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 (
<>
@@ -27,39 +29,32 @@ export default function Home() {
{/* 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 */}
<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>Made to suit different circumstances or requirements with ease.</p>
<p>{t("check1")}</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>
<p>{t("check2")}</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>
<p className="mb-0">{t("check3")}</p>
</div>
</div>
</div>
@@ -83,4 +78,13 @@ export default function Home() {
</Layout>
</>
)
}
}
export async function getStaticProps({ locale }) {
const { getMessages } = await import('../utils/getMessages')
return {
props: {
locale,
messages: await getMessages(locale),
}
}
}