Code Monkey home page Code Monkey logo

1hanzla100 / developer-portfolio Goto Github PK

View Code? Open in Web Editor NEW
650.0 6.0 437.0 3.12 MB

Software Developer Portfolio Template built with react.js and next.js bootstrap that helps you showcase your work and skills as a software developer.

Home Page: https://developer-portfolio-1hanzla100.vercel.app/

License: Apache License 2.0

JavaScript 0.33% TypeScript 97.83% Dockerfile 1.84%
react reactjs template portfolio portfolio-website portfolio-site react-portfolio reactjs-portfolio developer-portfolio reactjs-template

developer-portfolio's Introduction

Welcome to developer-portfolio ๐Ÿ‘‹

GitHub licenseGitHub issuesGitHub forks GitHub stars

Software Developer Portfolio Template built with Next.js, bootstrap that helps you showcase your work and skills as a software developer.

To view a live example, click here.

Just Edit portfolio.js to get your personal portfolio. Feel free to use it as-is or customize it as much as you want.

But if you want to contribute and make this much better for other developers have a look at Issues.

If you created something awesome and want to contribute then feel free to open an pull request.

Sections

โœ”๏ธ Summary and About me
โœ”๏ธ Skills
โœ”๏ธ Education
โœ”๏ธ Work Experience
โœ”๏ธ Feedbacks
โœ”๏ธ Projects
โœ”๏ธ Github Profile

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

You'll need Git and Node.js (which comes with npm) installed on your computer.
For Windows Install Visual C++ Build Environment: Visual Studio Build Tools

How To Use

  1. Fork this repository and clone it to your local machine.
$ git clone https://github.com/<your-username>/developer-portfolio.git
  1. Go into the repository
$ cd developer-portfolio
  1. Install dependencies
$ yarn
  1. Edit portfolio.js

  2. Start your development server

$ yarn dev

Linking Portfolio to Github

  //  portfolio.js
  githubUserName: 'YOUR GITHUB USERNAME HERE',

Using Emojis

For adding emoji ๐Ÿ˜ƒ into the texts in Portfolio.js, use the emoji() function and pass the text you need as an argument. This would help in keeping emojis compatible across different browsers and platforms.

Technologies Used

Illustrations

Icons

Iconify Icons are used in the skill section. You can find all the icons here: Iconify.

For the Future

If you can help us with these. Please don't hesitate to open a pull request.

  • Enable Dark Mode

  • Add More Sections

Show your support

Give a โญ๏ธ if this project helped you! You can buy me a coffee if you'd like to support my work further.

Author

๐Ÿ‘ค Hanzla Tauqeer

developer-portfolio's People

Contributors

1hanzla100 avatar abhirajshourya avatar bobbyg603 avatar brendanglancy avatar metaladmiral avatar simomosi avatar vatsalsinghkv avatar yash-28-gits avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

developer-portfolio's Issues

Fixed Dark Blue Navigation Bar without scroll effect

Hi Hanza,
Can you please tell me how I can make remove the scroll effect in the navigation bar and instead make it a fixed navigation bar with the dark blue color when scrolling also. I tried removing the Headroom component however this completely removes the navigation bar without making it a fixed one. I would appreciate if you could please provide assistance on this.

[Feature Request] Add Dark Mode to the Website

Description:
I would like to propose the addition of a Dark Mode feature to our website. This enhancement would provide users with an alternative color scheme, making the site more comfortable to use in low-light environments.

Steps to Reproduce:

  1. Visit the website.
  2. Look for the new Dark Mode toggle in the user settings.
  3. Switch to Dark Mode.

Expected Behavior:
The website should switch to a dark color scheme, improving visibility in low-light conditions.

Additional Information:

  • This feature aligns with current design trends and user preferences.
  • Consider providing customizable options for Dark Mode intensity (e.g., dark gray vs. black).
  • We should ensure that all elements, including text and images, are properly optimized for the Dark Mode theme.

Shaking cards (UI)

When you hover over cards with information about education, they quickly twitch.

4cJWug4bRT.mp4

Docker container support

Add docker support for containerizing the application for quick deployment on any machine or cloud.

Portfolio.js not found!

I am trying to find the portfolio.js file but it is not present. So how to edit this template?

Avoid Using usestate hook without cleanup or dependency list

Describe the bug
A clear and concise description of what the bug is.

To Reproduce
Steps to reproduce the behavior:

  1. Go to 'GithubProfile.jsx'
  2. look for useEffect which is running in an infinite loop

Expected behavior
It should be run in controlled way

Solution
create a variable query and assign the get query to it and then pass it in getData function as an argument and also pass it as useffect dependency list

i.e:

const quary = `https://api.github.com/users/${openSource.githubUserName}`;
  const [prof, setProf] = useState({});
  async function getProfileData(q) {
    await get(q)
      .then((res) => setProf(res.data))
      .catch((err) => console.log(err));
  }
  useEffect(() => {
    getProfileData(quary);
  }, [quary]);

Social Section

Add an option to remove icons in the social section. Like I don't want to use Facebook but there is no option to remove the Facebook icon.

Education grade

It would be useful to display the gpa/grade/final mark (different schools has different score systems) in the education card

Optional sections

All sections should be optional to make the whole portfolio more dynamic without modifying the core template.
E.g: If I don't want the feedbacks section I can set feedbacks = null

[improvement] - Implementation of Prettier & Typescript

So I was contributing to this project and I came to notice that my vscode prettier's setting changed whole file structure, which created a lot of unwanted changes.

I think it'd be better if there's Prettier setup for this project so everyone contributing to it and using it have same formatting.

I'd love to install prettier as dev dependency and use your prettier config for this project with npm script to formatting all the required files

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.