diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..e29da22ea --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,45 @@ + +# Please note we have a code of conduct, please follow it in all your interactions with the project. + + +## Code of Conduct + +### Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +### Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or +advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + + +### Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at [http://contributor-covenant.org/version/1/4][version] + +[homepage]: http://contributor-covenant.org +[version]: http://contributor-covenant.org/version/1/4/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..c703866bc --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,73 @@ +## Contributing Guidelines + +Thank you for your interest in contributing. Here's everything you'll need to make your first contribution. + +### What can I help with? + +We welcome contributions of all sorts. Even the most minor changes are warmly welcomed. You may choose to work on an existing issue or propose your own. + +Some examples of contributions are: + +1. Documentation: From spell corrections to documenting the necessary information, all comes in this section. + +2. Bugs: Any bug fixes are counted in this section. If you see a new bug, feel free to create a new issue mentioning the problem faced. + +3. Feature Requests: If you would like to see some new features around the website, you can always create a new issue mentioning the requested feature. + +**Important:** Every PR must correspond to an issue. If there isn't an issue related to the PR, open a new issue in the Issues section. + +### Grabbing an issue + +To work on an existing issue, comment on it and say you're working on that issue. Any maintainer will assign you to the issue. This is to avoid conflicts with others also working on the issue. + +You can always seek help and are recommended to discuss the course of action and design decisions to tackle the issue on the issue page before making the Pull Request. + +### How to Contribute? + +1. Fork this repository. + +2. Check out to a new branch for the patch. + +```bash +git checkout -b +``` + +3. Write your code. + + + +4. Before committing changes, you should verify if the issue is fixed + +5. Commit your changes. Try to follow the [best practices](https://gist.github.com/robertpainsi/b632364184e70900af4ab688decf6f53) while committing changes. + +```bash +git commit -s +# Then write the commit message and save changes +``` + +6. Push the changes to your fork. + +```bash +git push -u origin +``` + +7. Create a pull request. Be sure to read and follow our pull request guidelines! + +8. Wait for code review and address any issues raised. + +9. Voila! You made a contribution. Keep it up. + +### Keeping your fork up-to-date + +1. Add this repository as an upstream. + +```bash +git remote add upstream https://github.com/hhhrrrttt222111/developer-portfolio.git +``` + +2. Pull the latest changes from the main branch. + +```bash +git pull upstream master +``` + diff --git a/README.md b/README.md index 0c8f46429..db91e2cfc 100644 --- a/README.md +++ b/README.md @@ -383,6 +383,9 @@ export const educationData = [ | [Heroku](https://www.heroku.com/) | [Deploying React App on Heroku from GitHub](https://medium.com/make-it-heady/deploying-create-react-app-on-heroku-from-github-49447561f670) | [Youtube](https://www.youtube.com/watch?v=dn4mmfbletg) | ## Github Pages +| Site | Docs | Demo | +| :-------------: |:-------------: |:-------------: | +| [GitHub Pages](https://pages.github.com/) | [Deploying React App on GitHub Pages from GitHub](https://create-react-app.dev/docs/deployment/#github-pages) | [Youtube](https://youtu.be/F8s4Ng-re0E) |
diff --git a/public/index.html b/public/index.html index 15a1bec3e..fa3bfbc97 100644 --- a/public/index.html +++ b/public/index.html @@ -8,6 +8,24 @@ + + + + + + + + + + + + + + + + + + Portfolio diff --git a/src/index.css b/src/index.css index 5b155aeab..4a93bfcbe 100644 --- a/src/index.css +++ b/src/index.css @@ -8,9 +8,9 @@ @font-face { font-family: 'BestermindRegular'; - src: url('./assets/fonts/Bestermind/BestermindRegular.ttf'); /* IE9 Compat Modes */ - src: url('./assets/fonts/Bestermind/BestermindRegular.ttf') format('embedded-opentype'), /* IE6-IE8 */ - url('./assets/fonts/Bestermind/BestermindRegular.ttf') format('truetype'), /* Safari, Android, iOS */ + src: url('./assets/fonts/Bestermind/BestermindRegular.ttf'); + src: url('./assets/fonts/Bestermind/BestermindRegular.ttf') format('embedded-opentype'), + url('./assets/fonts/Bestermind/BestermindRegular.ttf') format('truetype'), } * { @@ -39,13 +39,12 @@ a { } img{ - -webkit-touch-callout: none; /* iOS Safari */ - -webkit-user-select: none; /* Safari */ - -khtml-user-select: none; /* Konqueror HTML */ - -moz-user-select: none; /* Old versions of Firefox */ - -ms-user-select: none; /* Internet Explorer/Edge */ - user-select: none; /* Non-prefixed version, currently - supported by Chrome, Edge, Opera and Firefox */ + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; } @@ -61,4 +60,4 @@ img{ body { overflow-x: hidden; } -} \ No newline at end of file +}