How can I pass a prop to the Link in react because my code is not working

I am trying to make the Link in ServicesLeft component take a prop but it does not work when i use a prop . Below are the necessary codes .

App.js

function App() {
  return (
    <>
      <Router>
        <Routes>
            <Route path="/" exact element={<HomePage/>} />
            <Route path="/whowehelp" exact element={<WhoWeHelp/>} />
            <Route path="/about" exact element={<AboutPage />} />
            <Route path= "/services" exact element= {<ServiceGeneralPage />} />
            <Route path="/caseStudy" exact element={<CaseStudyPage />} />
            <Route path="/contact" exact element={<ContactUs />} />
            <Route path="/seo" exact element={<SEO />} />
        </Routes>
      </Router>
      </>
  );
}

Here is where i am passing the prop

<div className={styles.column1}>
                        <ServicesLeft 
                        title= "Facebook Ads"
                        desc= "Facebook provides an easy-to-use, intuitive campaign interface. We are able to quickly create new campaigns, manage your budget, track analytics, and continuously improve your ROI. Facebook provides one of the best advertising platforms to use and is effective for every business size and industry type."
                        buttonText= "Learn More"
                        mLink = "'/seo'"
                        />
                    </div>


                    <ServicesLeft 
                    title= "Facebook Ads"
                    buttonText= "Learn More"
                    mLink = "'/seo'"
                    />
                

Finally here is where I apply the prop in ServicesLeft

 <div className={styles.leftSideButton}>
                    <Link to= {props.mLink}>
                        <LargePrimaryButton>
                            {props.buttonText}
                        </LargePrimaryButton>
                    </Link>
                
            </div>

                                                          

I have tried setting prop to mLink= ‘/seo’ but that didnt work but if i just insert “/seo” directly , it does work.