Author: Leju B Date: 08/08/2024
This repository contains the code for my personal portfolio, created using React . The portfolio showcases my skills, projects, and experience. It is deployed using GitHub Pages for easy access and sharing.
The personal portfolio is designed to provide a comprehensive overview of my professional skills and achievements. It includes sections such as:
- Home: An introduction and overview of who I am.
- About: Details about my background, education, and interests.
- Projects: A showcase of projects I’ve worked on with descriptions and links.(Pending)
- Contact: Information on how to get in touch with me.
- Frontend: React
- Deployment: GitHub Pages
The portfolio is deployed using GitHub Pages. Here’s how the deployment is managed:
-
Build the Project:
npm run build
This creates a production-ready build of your React application.
-
Deploy to GitHub Pages:
- Ensure that you have configured your
package.jsonwith the correcthomepagefield. - Use a deployment tool or script, like
gh-pages, to deploy the build to GitHub Pages.
npm install --save-dev gh-pages
Add the following scripts to
package.json:"scripts": { "predeploy": "npm run build", "deploy": "gh-pages -d build" }
Deploy the application:
npm run deploy
- Ensure that you have configured your