45 lines
1.8 KiB
JavaScript
45 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import sign from '/public/images/signeture.png';
|
|
import Image from 'next/image';
|
|
import Link from 'next/link';
|
|
import { useTranslation } from 'next-i18next';
|
|
|
|
const TestimonialSection2 = (props) => {
|
|
const { t } = useTranslation("aboutRacial");
|
|
return (
|
|
<section className={`wpo-about-section section-padding3 ${props.abClass}`}>
|
|
<div className="container">
|
|
<div className="wpo-about-wrap">
|
|
<div className="row align-items-center">
|
|
|
|
{/* Text Column — Show first on mobile, second on desktop */}
|
|
<div className="col-lg-6 col-md-12 col-12 order-1 order-lg-2 mb-5">
|
|
<div className="wpo-about-text">
|
|
<div className="wpo-section-title">
|
|
<span>{t("sectionTitle.subTitle")}</span>
|
|
<h2>{t("sectionTitle.title")}</h2>
|
|
</div>
|
|
<p>{t("paragraph")}</p>
|
|
</div>
|
|
<div className="close-form mt-5">
|
|
<Link className="theme-btn" href="/about/racial-justice"> <span className="text">{t("button")}</span>
|
|
</Link>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="col-lg-6 col-md-12 col-12 order-2 order-lg-1">
|
|
<div className="wpo-about-img">
|
|
<Image src={props.abimg} alt="About Image" />
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default TestimonialSection2;
|