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 ( <>
{/* SECTION CONTENT (ROW) */}
{/* IMAGE BLOCK */}
content-image
{/* TEXT BLOCK */}
{t("sectionId")}

{t("title")}

{t("description")}

{t("subtitle")}

{t("check1")}

{t("check2")}

{t("check3")}

{/* END TEXT BLOCK */}
{/* END SECTION CONTENT (ROW) */}
{/* End container */}






) } export async function getStaticProps({ locale }) { const { getMessages } = await import('../utils/getMessages') return { props: { locale, messages: await getMessages(locale), } } }