• Stars
    star
    1,170
  • Rank 38,525 (Top 0.8 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 2 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

πŸš€ Create a dynamic portfolio by just providing your GitHub username.

Easy to use automatic portfolio builder for every GitHub user!

View Demo Β· Report Bug Β· Request Feature

Preview
Shadow

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. 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:

βœ“ Easy to Setup
βœ“ 30 Themes
βœ“ Google Analytics
βœ“ Hotjar
βœ“ SEO
βœ“ PWA
βœ“ Avatar and Bio
βœ“ Social Links
βœ“ Skill Section
βœ“ Experience Section
βœ“ Certification Section
βœ“ Education Section
βœ“ Projects Section
βœ“ Blog Posts Section

To view a live example, click here.

Or try it online.

Themes

πŸŽ‰ Thank you for the 800 β˜…

Thank You

πŸ›  Installation & Setup

There are three ways to use GitProfile. Use any.

Forking this repo

These instructions will get you a copy of the project and deploy your portfolio online!

  • Fork repo: Click here to fork the repo so you have your own project to customize. A "fork" is a copy of a repository.

  • Rename repo:

    • If you want to host your portfolio at https://<USERNAME>.github.io, rename your forked repository to username.github.io in GitHub, where username is your GitHub username (or organization name).
    • If you want to host your portfolio at https://<USERNAME>.github.io/<REPO_NAME> (e.g. https://<USERNAME>.github.io/portfolio), rename your forked repository to <REPO_NAME> (e.g. portfolio) in GitHub.
  • Enable workflows: Go to your repo's Actions tab and enable workflows.

    Workflows

  • Base Value: Open vite.config.js, and change base's value.

    • If you are deploying to https://<USERNAME>.github.io, set base to '/'.

    • If you are deploying to https://<USERNAME>.github.io/<REPO_NAME> (e.g. https://<USERNAME>.github.io/portfolio), then set base to '/<REPO_NAME>/' (e.g. '/portfolio/').

    // vite.config.js
    {
      base: '/',
      // ...
    }
  • Commit the changes: Now commit to your main branch with your changes. Wait a few minutes so that the CI/CD pipeline can publish your website to GitHub Pages. You can check the progress in the Actions tab.

Your portfolio website will be live shortly. Any time you commit a change to the main branch, the website will be automatically updated. If you face any issue viewing the website, double-check the base value in the vite.config.js file. Also, check if Source is set to GitHub Actions in Settings ➜ Pages ➜ Build and deployment.

If you wish to add a custom domain, no CNAME file is required. Just add it to your repo's Settings ➜ Pages ➜ Custom domain.

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 for a detailed deployment guide to other services.

Setting up locally

  • Clone the project and change directory.

    git clone https://github.com/arifszn/gitprofile.git
    cd gitprofile
  • Install dependencies.

    npm install
  • Run dev server.

    npm run dev
  • Finally, visit http://localhost:5173/gitprofile/ from your browser.

Installing as package

You can also use GitProfile by installing as an NPM package.

First Install GitProfile via NPM.

npm install @arifszn/gitprofile

Or via Yarn.

yarn add @arifszn/gitprofile

Then, import the package, import and style and provide the config.

import GitProfile from '@arifszn/gitprofile';
import '@arifszn/gitprofile/dist/style.css';

function App() {
  return (
    <GitProfile
      config={{
        github: {
          username: 'arifszn',
        },
      }}
    />
  );
}

export default App;

List of all config here.

If you face any problems or have any questions, open an issue here.

🎨 Customization

All the magic happens in the file gitprofile.config.js. Open it and modify it according to your preference.

// gitprofile.config.js

const config = {
  github: {
    username: 'arifszn', // Your GitHub org/user name. (Required)
    sortBy: 'stars', // stars | updated
    limit: 8, // How many projects to display.
    exclude: {
      forks: false, // Forked projects will not be displayed if set to true.
      projects: [], // These projects will not be displayed. example: ['my-project1', 'my-project2']
    },
  },
  social: {
    linkedin: '',
    twitter: '',
    mastodon: '',
    facebook: '',
    instagram: '',
    dribbble: '',
    behance: '',
    medium: '',
    dev: '',
    stackoverflow: '', // format: userid/username
    website: '',
    skype: '',
    telegram: '',
    phone: '',
    email: '',
  },
  resume: {
    fileUrl: '', // Empty fileUrl will hide the `Download Resume` button.
  },
  skills: ['JavaScript', 'React.js'],
  experiences: [
    {
      company: 'Company Name',
      position: 'Position',
      from: 'September 2021',
      to: 'Present',
      companyLink: 'https://example.com',
    },
    {
      company: 'Company Name',
      position: 'Position',
      from: 'July 2019',
      to: 'August 2021',
      companyLink: 'https://example.com',
    },
  ],
  certifications: [
    {
      body: 'Certification Body Name',
      name: 'Sample Certification',
      year: 'March 2022',
      link: 'https://example.com',
    },
  ],
  education: [
    {
      institution: 'Institution Name',
      degree: 'Degree',
      from: '2015',
      to: '2019',
    },
    {
      institution: 'Institution Name',
      degree: 'Degree',
      from: '2012',
      to: '2014',
    },
  ],
  // To hide the `My Projects` section, keep it empty.
  externalProjects: [
    {
      title: 'Project Name',
      description:
        'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nunc ut.',
      imageUrl: 'https://via.placeholder.com/250x250',
      link: 'https://example.com',
    },
    {
      title: 'Project Name',
      description:
        'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nunc ut.',
      imageUrl: 'https://via.placeholder.com/250x250',
      link: 'https://example.com',
    },
  ],
  // Display blog posts from your medium or dev account. (Optional)
  blog: {
    source: 'dev', // medium | dev
    username: 'arifszn', // to hide blog section, keep it empty
    limit: 5, // How many posts to display. Max is 10.
  },
  googleAnalytics: {
    id: '', // GA3 tracking id/GA4 tag id UA-XXXXXXXXX-X | G-XXXXXXXXXX
  },
  // Track visitor interaction and behavior. https://www.hotjar.com
  hotjar: {
    id: '',
    snippetVersion: 6,
  },
  themeConfig: {
    defaultTheme: 'light',

    // Hides the theme change switch
    // Useful if you want to support a single color mode
    disableSwitch: false,

    // Should use the prefers-color-scheme media-query,
    // using user system preferences, instead of the hardcoded defaultTheme
    respectPrefersColorScheme: true,

    // Hide the ring in Profile picture
    hideAvatarRing: false,

    // Available themes. To remove any theme, exclude from here.
    themes: [
      'light',
      'dark',
      'cupcake',
      'bumblebee',
      'emerald',
      'corporate',
      'synthwave',
      'retro',
      'cyberpunk',
      'valentine',
      'halloween',
      'garden',
      'forest',
      'aqua',
      'lofi',
      'pastel',
      'fantasy',
      'wireframe',
      'black',
      'luxury',
      'dracula',
      'cmyk',
      'autumn',
      'business',
      'acid',
      'lemonade',
      'night',
      'coffee',
      'winter',
      'procyon',
    ],

    // Custom theme
    customTheme: {
      primary: '#fc055b',
      secondary: '#219aaf',
      accent: '#e8d03a',
      neutral: '#2A2730',
      'base-100': '#E3E3ED',
      '--rounded-box': '3rem',
      '--rounded-btn': '3rem',
    },
  },

  // Optional Footer. Supports plain text or HTML.
  footer: `Copyright Β© 2023 John Doe`,
};

Themes

There are 30 themes available that can be selected from the dropdown.

The default theme can be specified.

// gitprofile.config.js
const config = {
  // ...
  themeConfig: {
    defaultTheme: 'light',
    // ...
  },
};

Theme Dropdown

You can create your own custom theme by modifying these values. Theme procyon will have the custom styles.

// gitprofile.config.js
const config = {
  // ...
  themeConfig: {
    customTheme: {
      primary: '#fc055b',
      secondary: '#219aaf',
      accent: '#e8d03a',
      neutral: '#2A2730',
      'base-100': '#E3E3ED',
      '--rounded-box': '3rem',
      '--rounded-btn': '3rem',
    },
    // ...
  },
};

Google Analytics

GitProfile supports both GA3 and GA4. If you do not want to use Google Analytics, keep the id empty.

// gitprofile.config.js
const config = {
  // ...
  googleAnalytics: {
    id: '',
  },
};

Besides tracking visitors, it will track click events on projects and blog posts, and send them to Google Analytics.

Hotjar

GitProfile supports hotjar to track visitor interaction and behavior. If you do not want to use Hotjar, keep the id empty.

// gitprofile.config.js
const config = {
  // ...
  hotjar: {
    id: '',
    snippetVersion: 6,
  },
};

SEO

Meta tags will be auto-generated from configs dynamically. However, you can also manually add meta tags in public/index.html.

PWA

GitProfile is PWA enabled. The site can be installed as a Progressive Web App.

PWA

Avatar and Bio

Your avatar and bio will be fetched from GitHub automatically.

Social Links

You can link your social media services you're using, including LinkedIn, Twitter, Mastodon, Facebook, Instagram, Dribbble, Behance, Medium, dev, Stack Overflow, Skype, Telegram, personal website, phone and email.

// gitprofile.config.js
const config = {
  // ...
  social: {
    linkedin: 'ariful-alam',
    twitter: 'arif_szn',
    mastodon: '[email protected]',
    facebook: '',
    instagram: '',
    dribbble: '',
    behance: '',
    medium: '',
    dev: '',
    stackoverflow: '',
    skype: '',
    telegram: '',
    website: '',
    phone: '',
    email: '',
  },
};

Skills

To showcase your skills provide them here.

// gitprofile.config.js
const config = {
  // ...
  skills: ['JavaScript', 'React.js'],
};

Empty array will hide the skills section.

Experience

Provide your job history in experiences.

// gitprofile.config.js
const config = {
  // ...
  experiences: [
    {
      company: 'Company Name',
      position: 'Position',
      from: 'September 2021',
      to: 'Present',
      companyLink: 'https://example.com',
    },
    {
      company: 'Company Name',
      position: 'Position',
      from: 'July 2019',
      to: 'August 2021',
      companyLink: 'https://example.com',
    },
  ],
};

Empty array will hide the experience section.

Education

Provide your education history in education.

// gitprofile.config.js
const config = {
  // ...
  education: [
    {
      institution: 'Institution name 1',
      degree: 'Bachelor of Science',
      from: '2015',
      to: '2019',
    },
    {
      institution: 'Institution name 2',
      degree: 'Higher Secondary Certificate (HSC)',
      from: '2012',
      to: '2014',
    },
  ],
};

Empty array will hide the education section.

Certifications

Provide your industry certifications in certifications.

// gitprofile.config.js
const config = {
  // ...
  certifications: [
    {
      name: 'Lorem ipsum',
      body: 'Lorem ipsum dolor sit amet',
      year: 'March 2022',
      link: 'https://example.com',
    },
  ],
};

Empty array will hide the certifications section.

Projects

Github Projects

Your public repo from GitHub will be displayed in the Github Projects section automatically. You can limit how many projects do you want to be displayed. Also, you can hide forked or specific repo.

// gitprofile.config.js
const config = {
  // ...
  github: {
    username: 'arifszn',
    sortBy: 'stars',
    limit: 8,
    exclude: {
      forks: false,
      projects: ['my-project1', 'my-project2'],
    },
  },
};

External Projects

In this section you can showcase your external/personal projects.

// gitprofile.config.js
const config = {
  // ...
  externalProjects: [
    {
      title: 'Project Name',
      description: 'Description',
      link: 'https://example.com',
      imageUrl: 'https://via.placeholder.com/250x250',
    },
  ],
};

Blog Posts

If you have medium or dev account, you can show your recent blog posts in here just by providing your medium/dev username. You can limit how many posts to display (Max is 10).

// gitprofile.config.js
const config = {
  // ...
  blog: {
    source: 'dev',
    username: 'arifszn',
    limit: 5,
  },
};

Blog

The posts are fetched by blog.js.

πŸ’– Support

You can show your support by starring this project. β˜…

Github Star

πŸ’‘ Contribute

To contribute, see the Contributing guide.

πŸ“„ License

MIT

More Repositories

1

ezfolio

Open Source Portfolio/Resume CMS built using Laravel, React and Ant Design.
PHP
237
star
2

reactive-button

3D animated react button component with progress bar.
JavaScript
121
star
3

OneClick

Navigate to your favorite actions on the websites you love with just one click.
JavaScript
72
star
4

react-laravel

A simple crud based laravel app to learn how to use react with laravel.
PHP
60
star
5

reddit-image-fetcher

A JavaScript package for fetching reddit images, memes, wallpapers and more.
JavaScript
42
star
6

reforge

🎲 An out-of-box UI solution for enterprise applications as a React boilerplate.
TypeScript
39
star
7

blog.js

JavaScript client to get recent blog posts from popular blogging platforms.
JavaScript
37
star
8

pandora

πŸ₯’REST API starter kit powered by Laravel, OpenAPI, Sanctum.
CSS
33
star
9

find-me

Server less face recognition app built with face-api.js and React
JavaScript
16
star
10

react-offline-indicator

⚑ Offline detector and indicator for your React app.
JavaScript
14
star
11

laravel-advanced-validation

Laravel advanced validation rules for real-life scenarios.
PHP
13
star
12

php-blog-client

PHP client to get recent blog posts from popular blogging platforms.
PHP
11
star
13

email-scraper

An email scraper made with Node and React.
CSS
10
star
14

reddit-image-fetcher-php

A PHP package for fetching reddit images, memes, wallpapers and more.
PHP
9
star
15

memeDB

Auto fetched memes and wallpapers viewer made with React.
JavaScript
9
star
16

vail

⛡️Docker powered local development experience for JavaScript/TypeScript Apps. 🐳
JavaScript
9
star
17

arifszn

Config files for my GitHub profile.
7
star
18

simple-crud-backend

An API based backend built with Laravel.
PHP
3
star
19

simple-crud

A crud based single page application made with react and ant design.
Less
3
star
20

meme.js

JavaScript package to get memes on browser/server.
JavaScript
3
star
21

chatpad

A simple chat application made with laravel and socket io.
PHP
2
star
22

read-it

Read word by word by setting words per minute.
HTML
2
star
23

read-it-later

A REST api based project like mozilla pocket
PHP
2
star
24

mern-mailer

Made with MongoDB, Express.js, React and Node.
JavaScript
2
star
25

wallpaper.js

JavaScript package to get wallpapers on browser/server.
JavaScript
2
star
26

firebase-sdk-frontend-demo

JavaScript
1
star
27

laravel-docker-boilerplate

Docker boilerplate to run Laravel project.
Dockerfile
1
star
28

.github

Default community health files.
1
star
29

laravel-ddd-template

Laravel Domain Driven Design Template
PHP
1
star