Live Link: https://portfolio-fay-react.netlify.app/
This is my Portfolio Page. Thanks for being here! 🙂
.
├── README.md
├── package-lock.json
├── package.json
├── public
│ ├── favicon-16x16.png
│ └── index.html
└── src
├── App.css
├── App.js
├── assets
│ └── [your files...]
├── components
│ ├── about
│ │ ├── About.jsx
│ │ ├── Info.jsx
│ │ └── about.css
│ ├── contact
│ │ ├── Contact.jsx
│ │ └── contact.css
│ ├── footer
│ │ ├── Footer.jsx
│ │ └── footer.css
│ ├── header
│ │ ├── Header.jsx
│ │ └── header.css
│ ├── home
│ │ ├── Data.jsx
│ │ ├── Home.jsx
│ │ ├── ScrollDown.jsx
│ │ ├── Social.jsx
│ │ └── home.css
│ ├── qualification
│ │ ├── Qualification.jsx
│ │ └── qualification.css
│ ├── scrollup
│ │ ├── ScrollUp.jsx
│ │ └── scrollup.css
│ ├── skills
│ │ ├── Backend.jsx
│ │ ├── Frontend.jsx
│ │ ├── Skills.jsx
│ │ └── skills.css
│ └── work
│ └── [your works...]
├── helper
│ └── ToastNotify.tsx
└── index.js
To run the application on your local machine, follow these steps:
-
Clone the project to your computer:
git clone https://github.com/iamfatihay/Portfolio.git
-
Open your terminal and navigate to the project directory.
cd portfolio
-
Install the dependencies:
npm install
-
Start the application:
npm start
-
Open your web browser and visit http://localhost:3000 to explore the Blog Application.