janahan-law/components/aboutPage/TestimonialSection.js

45 lines
2.1 KiB
JavaScript

import React from 'react';
import sign from '/public/images/signeture.png';
import Image from 'next/image';
import Link from 'next/link';
const TestimonialSection = (props) => {
return (
<section className={`wpo-about-section section-padding3 ${props.abClass}`}>
<div className="container">
<div className="wpo-about-wrap">
<div className="row align-items-center">
<div className="col-lg-6 col-md-12 col-12 order-1 order-lg-2">
<div className="wpo-about-img">
<Image src={props.abimg} alt="About Image" />
</div>
</div>
{/* Text Column — Show first on mobile, second on desktop */}
<div className="col-lg-6 col-md-12 col-12 order-2 order-lg-1 mb-5">
<div className="wpo-about-text">
<div className="wpo-section-title">
<span>Our Mission</span>
<h2>Transforming Immigration Through Advocacy</h2>
</div>
<p>
At Janhanlaw, our mission extends far beyond legal representation - we are dedicated to transforming the immigration experience through compassionate advocacy, strategic excellence, and unwavering commitment to justice. For over 25 years, we have stood as a beacon of hope for individuals and families navigating the complex landscape of U.S. immigration law.
</p>
</div>
<div className="close-form mt-5">
<Link className="theme-btn" href="/about/our-mission"><span className="text">Know More</span>
</Link>
</div>
</div>
</div>
</div>
</div>
</section>
);
};
export default TestimonialSection;