2025-08-18 15:58:19 +05:30

75 lines
3.6 KiB
JavaScript

import React from 'react';
import sign from '/public/images/signeture.png';
import Image from 'next/image';
import { useTranslation } from 'next-i18next';
const AboutSection = (props) => {
const { t } = useTranslation('ourStory');
return (
<section className={`wpo-about-section section-padding2 ${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 mb-5">
<div className="wpo-about-text">
<div className="wpo-section-title">
<span>{t('about.title')}</span>
<h2>{t('about.heading')}</h2>
</div>
<p>{t('about.paragraph1')}</p>
<p>{t('about.paragraph2')}</p>
<div className="quote">
<p>{t('about.quote')}</p>
</div>
{/* <div className="wpo-about-left-info">
<div className="wpo-about-left-inner">
<div className="wpo-about-left-text">
<h5>John Janhan</h5>
<span>Lead Immigration Attorney & Founder</span>
</div>
</div>
<div className="signeture">
<Image src={sign} alt="Signature" />
</div>
</div> */}
</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 className="wpo-about-img-text">
<h4>1998</h4>
<div className="rotate-text">
{Array.from("WeAreWorkingForYouSince").map((letter, index) => (
<span key={index}>{letter}</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>
</div>
</div>
</section>
);
};
export default AboutSection;