0

I am fairly newly to React. I am building my own portfolio website, and I have a link to my Github in my About component. I wonder how I should implement the code so users can click on the link and see my Github?

Below is where I am About component.

function About() {
    return (
        <div id="About" className="aboutsection">            
            <p className="aboutbodytext">
                I am a Software Engineer based out of San Francisco, CA with a background in the legal field. 
                {/* Skills I want to mention: research, strong communication    */}
            <br/>
            <br/>
            Interested in learning more?
            </p>
            <Link to="/PDFResume">Resume</Link> | <Link to="/linkedin">Linkedin</Link> | <Link to="/Github">Github</Link>
        </div>
    )
}

Also, please feel free to provide any feedbacks/suggestions you think are worthwhile knowing.

Thanks!

0 Answers0