janahan-law/components/aboutPage/TestimonialSection.js
2025-08-16 18:08:36 +05:30

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 no-padding ${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-2 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-1 order-lg-1">
<div className="wpo-about-text">
<div className="wpo-section-title">
<span>Our Mission</span>
<h2>Transforming Immigration Through Advocacy</h2>
</div>
<p>
At Janahan law, 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 many years, we have been a trusted source of support for individuals and families navigating the complexities of U.S. immigration law.
</p>
</div>
<div className="close-form mt-5 mb-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;