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
+9 -17
View File
@@ -1,7 +1,8 @@
import Link from "next/link"
import { useTranslations } from "next-intl"
export default function MersmHero() {
const t = useTranslations("Hero")
return (
<>
<section id="hero-13" className="hero-section">
@@ -10,28 +11,19 @@ export default function MersmHero() {
{/* HERO TEXT */}
<div className="col-md-5">
<div className="hero-13-txt wow fadeInRight">
{/* Section ID */}
{/*<span className="section-id">Online Reputation That Work</span>*/}
{/* Title */}
<h2 className="s-54 w-700">All-in-One Cloud Platform for Practice Management</h2>
{/* Text */}
<p className="p-lg">Streamline workflows across practice with powerful AI agents. Build and deploy automated workflows with ease.
</p>
{/* Button */}
<Link href={process.env.NEXT_PUBLIC_SIGNUP_URL} className="btn r-04 btn--theme hover--tra-black">Get started for free</Link>
{/*<p className="p-sm btn-txt ico-15">*/}
{/* <span className="flaticon-check" /> No credit card needed, free 14-day trial*/}
{/*</p>*/}
<h2 className="s-54 w-700">{t("title")}</h2>
<p className="p-lg">{t("description")}</p>
<Link href={process.env.NEXT_PUBLIC_SIGNUP_URL} className="btn r-04 btn--theme hover--tra-black">{t("cta")}</Link>
</div>
</div> {/* END HERO TEXT */}
</div>
{/* HERO IMAGE */}
<div className="col-md-7">
<div className="hero-13-img wow fadeInLeft">
<img className="img-fluid" src="/images/hero-13-b-img.png" alt="hero-image" />
</div>
</div>
</div> {/* End row */}
</div> {/* End container */}
</div>
</div>
</section>
</>
)