diff --git a/README.md b/README.md
index 054e964..103d201 100644
--- a/README.md
+++ b/README.md
@@ -1,19 +1,16 @@
GitProfile
-Easy to use portfolio builder for every GitHub user!
+Easy to use automatic portfolio builder for every GitHub user!
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -24,45 +21,91 @@
-What if you could create your portfolio in 5 minutes just by providing your GitHub username and even host it without any cost? Do you want to display your skills, job history, education, or even blog posts on your website? Introducing **GitProfile**.
+What if you could create your portfolio in 5 minutes just by providing your GitHub username and even host it without any cost? Do you want to display your skills, job history, education, or blog posts on your portfolio? Introducing **GitProfile**.
**GitProfile** is an easy to use portfolio builder where you can create a portfolio page automatically by just providing your GitHub username. It is built using React.js on top of Vite.js. But it's not necessary to have knowledge on these to get you started. You can make your own copy with zero coding experience.
**Features:**
-✓ [30 Themes](#themes)\
-✓ [Google Analytics](#google-analytics)\
-✓ [Hotjar](#hotjar)\
-✓ [SEO](#seo)\
-✓ [Avatar and Bio](#avatar-and-bio)\
-✓ [Social Links](#social-links)\
-✓ [Skills](#skills)\
-✓ [Experience](#experience)\
-✓ [Education](#education)\
-✓ [Projects](#projects)\
+✓ [Easy to Setup](#-installation--set-up)
+✓ [30 Themes](#themes)
+✓ [Google Analytics](#google-analytics)
+✓ [Hotjar](#hotjar)
+✓ [SEO](#seo)
+✓ [Avatar and Bio](#avatar-and-bio)
+✓ [Social Links](#social-links)
+✓ [Skills](#skills)
+✓ [Experience](#experience)
+✓ [Education](#education)
+✓ [Projects](#projects)
✓ [Blog Posts](#blog-posts)
To view a live example, **[click here](https://arifszn.github.io/gitprofile)**.
Or try it **[online](https://stackblitz.com/edit/gitprofile)**.
-
-
## 🛠 Installation & Set Up
-There are two ways to use **GitProfile**.
+There are two ways to use **GitProfile**. Use either one.
-- Installing as an NPM package.
-- Forking this repo.
+
+Forking this repo (Click to expand)
-### Installing as an NPM package
+
-Install via NPM
+These instructions will get you a copy of the project and deploy your portfolio online!
-```
+- **Fork repo:** Click [here](https://github.com/arifszn/gitprofile/fork) to fork the repo so you have your own project to customize. A "fork" is a copy of a repository.
+- **Rename repo:** Rename your forked repository to `username.github.io` in GitHub, where `username` is your GitHub username (or organization name).
+- **Workflow permissions:** Go to your forked repo's settings. Select **Actions** ➜ **General**. In **Workflow permissions** section, select `Read and write permissions`.
+- **Enable workflows:** Go to your repo's **Actions** page and enable workflows.
+
+ 
+
+- **Base Value:** Open `vite.config.js`, and change `base`'s value.
+
+ - If you are deploying to `https://.github.io/`, set `base` to `'/'`.
+
+ - If you are deploying to `https://.github.io//`, for example your repository is at `https://github.com//`, then set `base` to `'//'`.
+
+ ```js
+ // vite.config.js
+ {
+ base: '/',
+ // ...
+ }
+ ```
+
+- **First Commit:** Now commit to your **main** branch with your changes. The CI/CD pipeline will publish your page at the `gh-pages` branch automatically.
+- **Change deploy branch:** Go to your repo's **Settings** ➜ **Pages** ➜ **Source** and change the branch to `gh-pages` and click **save**.
+
+Your personal portfolio will be live at `username.github.io`. Any time you commit a change to the **main** branch, the website will be automatically updated.
+
+If you see only `README` at `username.github.io`, be sure to change your GitHub Page's source to `gh-pages` branch. See [how to](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). Also, if you face any issue rendering the website, double-check the `base` value in the `vite.config.js`.
+
+As this is a vite project, you can also host your website to Netlify, Vercel, Heroku, or other popular services. Please refer to this [doc](https://vitejs.dev/guide/static-deploy.html) for a detailed deployment guide to other services.
+
+
+
+Or
+
+
+Installing as package (Click to expand)
+
+
+
+First Install **GitProfile** via NPM.
+
+```sh
npm install @arifszn/gitprofile
```
+Or via Yarn.
+
+```sh
+yarn add @arifszn/gitprofile
+```
+
Then, import the package, import and style and provide the config.
```js
@@ -86,39 +129,7 @@ export default App;
List of all config [here](#-customization).
-### Forking this repo
-
-These instructions will get you a copy of the project and deploy your website online!
-
-- **[Fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo)** the repo so you have your own project to customize by clicking the fork icon on the top right side. A "fork" is a copy of a repository.
-- Rename your forked repository to `username.github.io` in GitHub, where `username` is your GitHub username (or organization name).
-- Go to your repo's **Actions** page and enable workflows.
-
- 
-
-- Open `vite.config.js`, and change `base`'s value.
-
- - If you are deploying to `https://.github.io/`, set `base` to `'/'`.
-
- - If you are deploying to `https://.github.io//`, for example your repository is at `https://github.com//`, then set `base` to `'//'`.
-
- ```js
- // vite.config.js
- {
- base: '/',
- // ...
- }
- ```
-
-- Now commit to your **main** branch with your changes.
-- The CI/CD pipeline will publish your page at the gh-pages branch automatically.
-- Go to your repo's **Settings** -> **Pages** -> **Source** and change the branch to gh-pages and click **save**.
-- Your personal portfolio will be live at `username.github.io`.
-- Any time you commit a change to the **main** branch, the website will be automatically updated.
-
-If you see only `README` at `username.github.io`, be sure to change your GitHub Page's source to `gh-pages` branch. See [how to](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). Also, if you face any issue rendering the website, double-check the `base` value in the `vite.config.js`.
-
-As this is a vite project, you can also host your website to Netlify, Vercel, Heroku, or other popular services. Please refer to this [doc](https://vitejs.dev/guide/static-deploy.html) for a detailed deployment guide to other services.
+
## 🎨 Customization
@@ -268,7 +279,9 @@ module.exports = {
};
```
-
+
+
+
You can create your own custom theme by modifying these values. Theme `procyon` will have the custom styles.
@@ -291,11 +304,9 @@ module.exports = {
};
```
-
-
-
-
-
+
+
+
### Google Analytics
diff --git a/gitprofile.config.js b/gitprofile.config.js
index 7faad96..b4a9ca7 100644
--- a/gitprofile.config.js
+++ b/gitprofile.config.js
@@ -49,12 +49,6 @@ const config = {
from: 'July 2019',
to: 'August 2021',
},
- {
- company: 'Techvillage',
- position: 'Jr. Software Engineer',
- from: 'January 2019',
- to: ' June 2019',
- },
],
education: [
{
diff --git a/src/components/details/index.jsx b/src/components/details/index.jsx
index 22b4339..bd3c8f2 100644
--- a/src/components/details/index.jsx
+++ b/src/components/details/index.jsx
@@ -71,7 +71,7 @@ const Details = ({ profile, loading, social, github }) => {
{profile.location && (
}
- title="Based on:"
+ title="Based in:"
value={profile.location}
/>
)}