102 lines
5.9 KiB
JavaScript
102 lines
5.9 KiB
JavaScript
import React from 'react'
|
|
import sign from '/public/images/signeture.png'
|
|
import Image from 'next/image';
|
|
import Link from 'next/link';
|
|
|
|
const About = (props) => {
|
|
return (
|
|
<section className={`wpo-about-section section-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-1">
|
|
<div className="wpo-about-img">
|
|
<Image src={props.introImg} alt="" />
|
|
{/* <div className="wpo-about-img-text">
|
|
<h4>1998</h4>
|
|
|
|
<div className="rotate-text">
|
|
<span>W</span>
|
|
<span>e</span>
|
|
<span>A</span>
|
|
<span>r</span>
|
|
<span>e</span>
|
|
<span>W</span>
|
|
<span>o</span>
|
|
<span>r</span>
|
|
<span>k</span>
|
|
<span>i</span>
|
|
<span>n</span>
|
|
<span>g</span>
|
|
<span>F</span>
|
|
<span>o</span>
|
|
<span>r</span>
|
|
<span>Y</span>
|
|
<span>o</span>
|
|
<span>u</span>
|
|
<span>S</span>
|
|
<span>i</span>
|
|
<span>n</span>
|
|
<span>c</span>
|
|
<span>e</span>
|
|
</div>
|
|
<div className="dots">
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</div>
|
|
<div className="border-shape-1"></div>
|
|
<div className="border-shape-2"></div>
|
|
<div className="border-shape-3"></div>
|
|
</div> */}
|
|
<div className="about-shape">
|
|
<div className="shape-1"></div>
|
|
<div className="shape-2"></div>
|
|
<div className="shape-3"></div>
|
|
<div className="shape-4"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<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>Expert Immigration Guidance</span>
|
|
<h2>We Turn Immigration Challenges Into Success Stories</h2>
|
|
</div>
|
|
<p>Every immigration case tells a unique story of hope, determination, and the pursuit of the American dream. At Janahan law, we understand that behind every petition, application, and legal document is a real person with real dreams.</p>
|
|
<p>Our comprehensive approach combines decades of legal expertise with genuine care for our clients' futures. Whether you're seeking to reunite with family, advance your career, or find safety and protection in America, we provide the skilled advocacy and personal attention your case deserves.
|
|
</p>
|
|
<p>
|
|
From the initial consultation through the final approval, we stand with you every step of the way, ensuring no detail is overlooked and no opportunity is missed.
|
|
</p>
|
|
<div className="quote">
|
|
<p>“We believe every family deserves the chance to stay together, every professional deserves to pursue their career, and every person deserves safety and opportunity.”</p>
|
|
</div>
|
|
{/* <div className="wpo-about-left-info">
|
|
<div className="wpo-about-left-inner">
|
|
<div className="wpo-about-left-text">
|
|
<h5>Robert Willum</h5>
|
|
<span>CEO & Founder of Manit</span>
|
|
</div>
|
|
</div>
|
|
<div className="signeture">
|
|
<Image src={sign} alt="" />
|
|
</div>
|
|
</div> */}
|
|
<div className="close-form mt-5">
|
|
<Link className="theme-btn" href="/about"><span className="text">Know More</span>
|
|
{/* <span className="mobile">
|
|
<i className="fi flaticon-charity"></i>
|
|
</span> */}
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
)
|
|
}
|
|
|
|
export default About; |