25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
import { useTranslations } from "next-intl"
|
|
|
|
export default function MermsDedicatedTeam() {
|
|
const t = useTranslations("DedicatedTeam")
|
|
return <>
|
|
<section className="bg--04 bg--fixed py-100 ct-01 content-section division">
|
|
<div className="container">
|
|
<div className="row d-flex align-items-center">
|
|
<div className="col-md-6 order-last order-md-2">
|
|
<div className="txt-block left-column wow fadeInRight">
|
|
<span className="section-id">our Team at MERMS</span>
|
|
<h2 className="s-50 w-700">{t("title")}</h2>
|
|
<p className="p-lg">{t("description")}</p>
|
|
</div>
|
|
</div>
|
|
<div className="col-md-6 order-first order-md-2">
|
|
<div className="img-block j-img video-preview right-column wow fadeInLeft">
|
|
<img className="img-fluid r-20" src="/images/img-17.jpg" alt="video-preview" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</>
|
|
} |