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 About = (props) => { const { t } = useTranslation('(home)/homeAbout'); // Ensure paragraphs is an array to avoid runtime errors const paragraphs = t('paragraphs', { returnObjects: true }); const paragraphList = Array.isArray(paragraphs) ? paragraphs : []; return (
About image
{t('expertGuidance')}

{t('mainTitle')}

{paragraphList.map((para, index) => (

{para}

))}

{t('quote')}

{/* Optional signature block */} {/*
Robert Willum
CEO & Founder of Manit
Signature
*/}
{t('buttonText')}
); }; export default About;