saima_final.zip

deploy React app to Kubernetes using Docker

External Libraries

Create Portfolio

<aside>

Create React Portfolio App

install Chakra UI and other references libraries

Step 1

Open Header.js file. You will see a header component with black background, but no content.

Add external social media links to the header on the left side of the page

<nav>
  <HStack spacing={4}>
    {socials.map((social, index) => (
      <a
        key={index}
        href={social.url}
        target="_blank"
        rel="noopener noreferrer"
      >
        <FontAwesomeIcon icon={social.icon} size="2x" />
      </a>
    ))}
  </HStack>
</nav>

Add internal links to the Projects section and Contact Me section