├── .all-contributorsrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report---.md │ └── feature-request---.md ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md └── workflows │ └── node.js.yml ├── .gitignore ├── BharatKammakatla.gif ├── Dockerfile ├── LICENSE ├── README.md ├── fetch.js ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── sitemap.xml └── src ├── App.css ├── App.js ├── App.test.js ├── assets ├── fonts │ ├── Agustina.woff │ └── Montserrat-Regular.ttf └── images │ ├── cognizant-logo.png │ ├── contactMail.webp │ ├── cx-logo.png │ ├── developerActivity.svg │ ├── ibm_logo.png │ ├── jsFramework.svg │ ├── manOnTable.svg │ ├── meta_pic.png │ ├── pierian-data-logo.png │ ├── quoraLogo.png │ ├── rahulshettyacademy-logo.png │ ├── seetest-logo.png │ ├── skill.svg │ ├── tcs-logo.png │ ├── vskills-logo.png │ └── zero-to-mastery.png ├── components ├── blogCard │ ├── BlogCard.css │ └── BlogCard.js ├── button │ ├── Button.css │ └── Button.js ├── certificationCard │ ├── CertificationCard.css │ └── CertificationCard.js ├── experienceCard │ ├── ExperienceCard.css │ └── ExperienceCard.js ├── footer │ ├── Footer.css │ └── Footer.js ├── githubProfileCard │ ├── GithubProfileCard.css │ └── GithubProfileCard.js ├── githubRepoCard │ ├── GithubRepoCard.css │ └── GithubRepoCard.js ├── header │ ├── Header.css │ └── Header.js ├── socialMedia │ ├── SocialMedia.css │ └── SocialMedia.js └── softwareSkills │ ├── SoftwareSkill.css │ └── SoftwareSkill.js ├── containers ├── Main.js ├── blogs │ ├── Blog.css │ └── Blogs.js ├── certifications │ ├── Certifications.css │ └── Certifications.js ├── contact │ ├── Contact.css │ └── Contact.js ├── greeting │ ├── Greeting.css │ └── Greeting.js ├── loading │ ├── Loading.js │ └── loading.css ├── profile │ └── Profile.js ├── projects │ ├── Project.css │ └── Projects.js ├── skills │ ├── Skills.css │ └── Skills.js ├── topbutton │ ├── Top.css │ └── Top.js └── workExperience │ ├── WorkExperience.css │ └── WorkExperience.js ├── index.css ├── index.js ├── logo.svg ├── portfolio.js └── serviceWorker.js /.all-contributorsrc: -------------------------------------------------------------------------------- 1 | { 2 | "files": [ 3 | "README.md" 4 | ], 5 | "imageSize": 100, 6 | "commit": false, 7 | "contributors": [ 8 | { 9 | "login": "9inpachi", 10 | "name": "Fawad Ali", 11 | "avatar_url": "https://avatars2.githubusercontent.com/u/36920441?v=4", 12 | "profile": "http://facebook.com/9inpachi", 13 | "contributions": [ 14 | "ideas", 15 | "code" 16 | ] 17 | }, 18 | { 19 | "login": "IamDZN", 20 | "name": "Dasun Navoda", 21 | "avatar_url": "https://avatars0.githubusercontent.com/u/5556085?v=4", 22 | "profile": "https://dasunnavoda.wordpress.com/", 23 | "contributions": [ 24 | "doc" 25 | ] 26 | }, 27 | { 28 | "login": "brianteeman", 29 | "name": "Brian Teeman", 30 | "avatar_url": "https://avatars3.githubusercontent.com/u/1296369?v=4", 31 | "profile": "https://brian.teeman.net", 32 | "contributions": [ 33 | "doc" 34 | ] 35 | }, 36 | { 37 | "login": "rajkumaar23", 38 | "name": "Rajkumar S", 39 | "avatar_url": "https://avatars1.githubusercontent.com/u/37476886?v=4", 40 | "profile": "https://rajkumaar.co.in", 41 | "contributions": [ 42 | "code" 43 | ] 44 | }, 45 | { 46 | "login": "viveksharmaui", 47 | "name": "Slim Coder", 48 | "avatar_url": "https://avatars1.githubusercontent.com/u/28563357?v=4", 49 | "profile": "https://github.com/viveksharmaui", 50 | "contributions": [ 51 | "code", 52 | "doc" 53 | ] 54 | }, 55 | { 56 | "login": "msayyaf1", 57 | "name": "Mohamed Sayyaf", 58 | "avatar_url": "https://avatars3.githubusercontent.com/u/22149734?v=4", 59 | "profile": "http://msayyaf.com", 60 | "contributions": [ 61 | "doc" 62 | ] 63 | }, 64 | { 65 | "login": "ashutosh1919", 66 | "name": "Ashutosh Hathidara", 67 | "avatar_url": "https://avatars3.githubusercontent.com/u/20843596?v=4", 68 | "profile": "https://ashutosh1919.github.io", 69 | "contributions": [ 70 | "code" 71 | ] 72 | }, 73 | { 74 | "login": "Rizwanjamal", 75 | "name": "Rizwan Jamal ⚡️", 76 | "avatar_url": "https://avatars0.githubusercontent.com/u/8683960?v=4", 77 | "profile": "https://www.upwork.com/freelancers/~01d10c23d4ffe3c658", 78 | "contributions": [ 79 | "doc" 80 | ] 81 | }, 82 | { 83 | "login": "MohammadHasham", 84 | "name": "Muhammad Hasham", 85 | "avatar_url": "https://avatars0.githubusercontent.com/u/17927649?v=4", 86 | "profile": "http://www.muhammadhasham.com", 87 | "contributions": [ 88 | "code" 89 | ] 90 | }, 91 | { 92 | "login": "joshiujjawal22", 93 | "name": "UJJAWAL JOSHI", 94 | "avatar_url": "https://avatars3.githubusercontent.com/u/44023234?v=4", 95 | "profile": "https://sourcerer.io/joshiujjawal22", 96 | "contributions": [ 97 | "code" 98 | ] 99 | }, 100 | { 101 | "login": "palak-sethi", 102 | "name": "Palak Sethi", 103 | "avatar_url": "https://avatars2.githubusercontent.com/u/51605219?v=4", 104 | "profile": "https://github.com/palak-sethi", 105 | "contributions": [ 106 | "code" 107 | ] 108 | }, 109 | { 110 | "login": "viniciusbds", 111 | "name": "Vinicius Barbosa", 112 | "avatar_url": "https://avatars3.githubusercontent.com/u/34755896?v=4", 113 | "profile": "https://viniciusbds.github.io/", 114 | "contributions": [ 115 | "code" 116 | ] 117 | }, 118 | { 119 | "login": "BharatKammakatla", 120 | "name": "Bharat Kammakatla", 121 | "avatar_url": "https://avatars1.githubusercontent.com/u/28840761?v=4", 122 | "profile": "https://bharatkammakatla.github.io", 123 | "contributions": [ 124 | "design" 125 | ] 126 | }, 127 | { 128 | "login": "garimasingh128", 129 | "name": "Garima Singh", 130 | "avatar_url": "https://avatars2.githubusercontent.com/u/44302373?v=4", 131 | "profile": "http://bit.ly/garimasingh", 132 | "contributions": [ 133 | "code" 134 | ] 135 | }, 136 | { 137 | "login": "HenryHengZJ", 138 | "name": "Henry Heng", 139 | "avatar_url": "https://avatars2.githubusercontent.com/u/26460777?v=4", 140 | "profile": "https://github.com/HenryHengZJ", 141 | "contributions": [ 142 | "code", 143 | "design" 144 | ] 145 | }, 146 | { 147 | "login": "PulkitBanta", 148 | "name": "Pulkit Banta", 149 | "avatar_url": "https://avatars2.githubusercontent.com/u/43134750?v=4", 150 | "profile": "https://github.com/PulkitBanta", 151 | "contributions": [ 152 | "code", 153 | "bug" 154 | ] 155 | }, 156 | { 157 | "login": "AkshayCHD", 158 | "name": "Akshay Kumar", 159 | "avatar_url": "https://avatars1.githubusercontent.com/u/25455546?v=4", 160 | "profile": "https://github.com/AkshayCHD", 161 | "contributions": [ 162 | "code", 163 | "bug" 164 | ] 165 | }, 166 | { 167 | "login": "AmnaEjaz", 168 | "name": "Amna Ejaz", 169 | "avatar_url": "https://avatars3.githubusercontent.com/u/14257959?v=4", 170 | "profile": "https://github.com/AmnaEjaz", 171 | "contributions": [ 172 | "code", 173 | "ideas" 174 | ] 175 | }, 176 | { 177 | "login": "parasnagpal", 178 | "name": "Paras Nagpal", 179 | "avatar_url": "https://avatars0.githubusercontent.com/u/39419139?v=4", 180 | "profile": "https://github.com/parasnagpal", 181 | "contributions": [ 182 | "code" 183 | ] 184 | }, 185 | { 186 | "login": "sparsh-99", 187 | "name": "Sparsh Garg", 188 | "avatar_url": "https://avatars0.githubusercontent.com/u/56729873?v=4", 189 | "profile": "https://sourcerer.io/sparsh-99", 190 | "contributions": [ 191 | "code" 192 | ] 193 | }, 194 | { 195 | "login": "aashutoshrathi", 196 | "name": "Aashutosh Rathi", 197 | "avatar_url": "https://avatars2.githubusercontent.com/u/21199234?v=4", 198 | "profile": "http://aashutosh.dev", 199 | "contributions": [ 200 | "code" 201 | ] 202 | }, 203 | { 204 | "login": "abhishekashyap", 205 | "name": "Abhishek Kashyap", 206 | "avatar_url": "https://avatars3.githubusercontent.com/u/29458374?v=4", 207 | "profile": "https://abhishekashyap.studio/", 208 | "contributions": [ 209 | "bug" 210 | ] 211 | } 212 | ], 213 | "contributorsPerLine": 7, 214 | "projectName": "developerFolio", 215 | "projectOwner": "saadpasta", 216 | "repoType": "github", 217 | "repoHost": "https://github.com", 218 | "skipCi": true 219 | } 220 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report---.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Bug Report \U0001F41E" 3 | about: 'Something isn''t working as expected? Here is the right place to report. ' 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 15 | 16 | 17 | **Describe the bug** 18 | A clear and concise description of what the bug is. 19 | 20 | **To Reproduce** 21 | Steps to reproduce the behavior: 22 | 1. Go to '...' 23 | 2. Click on '....' 24 | 3. Scroll down to '....' 25 | 4. See error 26 | 27 | **Expected behavior** 28 | A clear and concise description of what you expected to happen. 29 | 30 | **Is this responsiveness Issue** 31 | YES/NO 32 | 33 | **Screenshots** 34 | If applicable, add screenshots to help explain your problem. 35 | 36 | **Desktop (please complete the following information):** 37 | - OS: [e.g. iOS] 38 | - Browser [e.g. chrome, safari] 39 | - Version [e.g. 22] 40 | 41 | **Smartphone (please complete the following information):** 42 | - Device: [e.g. iPhone6] 43 | - OS: [e.g. iOS8.1] 44 | - Browser [e.g. stock browser, safari] 45 | - Version [e.g. 22] 46 | 47 | **Additional context** 48 | Add any other context about the problem here. 49 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request---.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: "Feature request \U0001F4A1" 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Summary 11 | A brief explanation of the feature. 12 | 13 | ### What's new? 14 | If the proposal involves a new component or a redesign of a previous component. 15 | 16 | ### Motivation 17 | Why are we doing this? What use cases does it support? What is the expected outcome? 18 | 19 | ### Additional context 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Description 2 | 3 | Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change. 4 | 5 | Fixes # (issue) 6 | 7 | ## Type of change 8 | 9 | 10 | 11 | 12 | - [ ] Bug fix (non-breaking change which fixes an issue) 13 | - [ ] New feature (non-breaking change which adds functionality) 14 | - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) 15 | - [ ] This change requires a documentation update 16 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy 2 | env: 3 | CI: false 4 | GITHUB_USERNAME: ${{ github.repository_owner }} 5 | REACT_APP_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 6 | on: 7 | push: 8 | branches: 9 | - master 10 | schedule: 11 | - cron: "0 12 * * 1" 12 | jobs: 13 | build-and-deploy: 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: Checkout 🛎️ 17 | uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. 18 | with: 19 | persist-credentials: false 20 | 21 | - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. 22 | run: | 23 | npm install 24 | npm run build 25 | 26 | - name: Deploy 🚀 27 | uses: JamesIves/github-pages-deploy-action@releases/v3 28 | with: 29 | ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} 30 | BRANCH: gh-pages # The branch the action should deploy to. 31 | FOLDER: build # The folder the action should deploy. 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .idea/ 8 | 9 | # testing 10 | /coverage 11 | /build 12 | 13 | 14 | # misc 15 | .DS_Store 16 | .env 17 | .env.local 18 | .env.development.local 19 | .env.test.local 20 | .env.production.local 21 | 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | 26 | #user generated content 27 | public/profile.json 28 | -------------------------------------------------------------------------------- /BharatKammakatla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/BharatKammakatla.gif -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # This file is the main docker file configurations 2 | 3 | # Official Node JS runtime as a parent image 4 | FROM node:10.16.0-alpine 5 | 6 | # Set the working directory to ./app 7 | WORKDIR ./app 8 | 9 | # Install app dependencies 10 | # A wildcard is used to ensure both package.json AND package-lock.json are copied 11 | # where available (npm@5+) 12 | COPY package*.json ./ 13 | 14 | # Install any needed packages 15 | RUN npm install 16 | 17 | # Audit fix npm packages 18 | RUN npm audit fix 19 | 20 | # Bundle app source 21 | COPY . /app 22 | 23 | # Make port 3000 available to the world outside this container 24 | EXPOSE 3000 25 | 26 | # Run app.js when the container launches 27 | CMD ["npm", "start"] 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Software Developer Portfolio ⚡️ 2 | 3 | ## A simple, beautiful and responsive portfolio template for Developers! 4 | 5 | 6 |

7 | 8 | 9 | 10 |

11 | 12 | 13 | Just change `src/portfolio.js` to get your personal portfolio . Feel free to use it as-is or customize it as much as you want. 14 | 15 | 16 | ## Sections 17 | ✔️ Summary and About me\ 18 | ✔️ Skills\ 19 | ✔️ Projects\ 20 | ✔️ Certificates\ 21 | ✔️ Blogs\ 22 | ✔️ Contact me\ 23 | ✔️ Github Profile 24 | 25 | To view a live example, **[click here](https://bharatkammakatla.com/)** 26 | 27 | 28 | ## Getting Started 🚀 29 | 30 | These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. 31 | 32 | You'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer or use [Docker](https://www.docker.com/products/docker-desktop). 33 | 34 | ``` 35 | node@v10.16.0 or higher 36 | npm@6.9.0 or higher 37 | git@2.17.1 or higher 38 | ``` 39 | ### Docker Commands 40 | 41 | ``` 42 | 1) BUILD IMAGE : docker build -t developerfolio:latest . 43 | 2) RUN IMAGE: docker run -p 3000:3000 developerfolio:latest 44 | ``` 45 | 46 | 47 | ## How To Use 🔧 48 | 49 | From your command line, clone and run developerFolio: 50 | 51 | ```bash 52 | # Clone this repository 53 | $ git clone https://github.com/BharatKammakatla/Developer-Portfolio.git 54 | 55 | # Go into the repository 56 | $ cd developerFolio 57 | 58 | # Install dependencies 59 | $ npm install 60 | 61 | #Start's development server 62 | $ npm start 63 | ``` 64 | ## Github Setup For Open Source Projects 65 | 66 | Generate a Github personal access token using these [Instructions](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line) `Make sure you don't select any scope just generate a simple token` 67 | 68 | 1. Create a file called .env in the root directory of your project. 69 | 70 | ```bash 71 | - DeveloperFolio 72 | - node_modules 73 | - public 74 | - src 75 | - .env <-- create it here 76 | - .gitignore 77 | - package-lock.json 78 | - package.json 79 | ``` 80 | 81 | 2. Inside the .env file, add key `REACT_APP_GITHUB_TOKEN` and assign your github token like this. 82 | 83 | ```javascript 84 | // .env 85 | 86 | REACT_APP_GITHUB_TOKEN = "YOUR GITHUB TOKEN HERE" 87 | 88 | }; 89 | ``` 90 | 91 | Set `showGithubProfile` to true or false to show Contact Profile using Github, defaults to false. 92 | 93 | Note: Projects section only show pinned items of your Github. If you are seeing [this](https://i.imgur.com/Hj6mu1K.png), please follow this 94 | [Instructions](https://docs.github.com/en/enterprise/2.13/user/articles/pinning-items-to-your-profile). 95 | 96 | ## Change and customize every section according to your need. 97 | 98 | #### Personalize page content in `/src/portfolio.js` & modify it as per your need. 99 | 100 | ```javascript 101 | /* Change this file to get your Personal Porfolio */ 102 | 103 | For example: To change greeting section just update the below block with your details: 104 | 105 | const greeting = { 106 | /* Your Summary And Greeting Section */ 107 | title: "Hi all I'm Bharat", 108 | subTitle: emoji("Software Developer 🚀 | Test Automation Engineer ⚙️ | Data Science Enthusiast 🎓"), 109 | resumeLink: "https://drive.google.com/file/d/1ofFdKF_mqscH8WvXkSObnVvC9kK7Ldlu/view?usp=sharing" 110 | }; 111 | 112 | const socialMediaLinks = { 113 | /* Your Social Media Link */ 114 | github: "https://github.com/bharatkammakatla", 115 | linkedin: "https://www.linkedin.com/in/bharatkammakatla/", 116 | gmail: "bharatkammakatla@gmail.com" 117 | }; 118 | 119 | Similarly, you can also update all other sections. 120 | 121 | const skillsSection = { .... } 122 | 123 | const techStack = { .... } 124 | 125 | const workExperience = { .... } 126 | 127 | const openSource = { .... } 128 | 129 | const bigProjects = { .... } 130 | 131 | const achievementSection = { .... } 132 | 133 | const blogSection = { .... } 134 | 135 | const contactInfo = { .... } 136 | 137 | const twitterDetails = { ... } 138 | 139 | ``` 140 | 141 | #### Using Emojis 142 | 143 | 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. 144 | 145 | 146 | ## Deployment 📦 147 | When you are done with the setup, you should host your website online. 148 | We highly recommend to read through the [Deploying on Github Pages](https://create-react-app.dev/docs/deployment/#github-pages) docs for React. 149 | 150 | #### Deploying to Github Pages 151 | 152 | This section guides you to deploy your portfolio on Github pages. 153 | 154 | - Navigate to `package.json` and enter your domain name instead of `https://bharatkammakatla/` in `homepage` variable. For example, if you want your site to be `https://.github.io/developerFolio`, add the same to the homepage section of `package.json`. 155 | 156 | - In short you can also add `/devloperFolio` to `package.json` as both are exactly same. Upon doing so, you tell `create-react-app` to add the path assets accordingly. 157 | 158 | - Optionally, configure the domain. You can configure a custom domain with GitHub Pages by adding a `CNAME` file to the `public/` folder. 159 | 160 | - Follow through the guide to setup GitHub pages from the official CRA docs [here](https://create-react-app.dev/docs/deployment/#github-pages). 161 | 162 | #### Deploying to Netlify 163 | 164 | You could also host directly with Netlify by linking your own repository. 165 | 166 | For more information, read [hosting on Netlify](https://create-react-app.dev/docs/deployment/#netlify). 167 | 168 | ## Technologies used 🛠️ 169 | 170 | - [React](https://reactjs.org/) 171 | - [graphql](https://graphql.org/) 172 | - [apollo-boost](https://www.apollographql.com/docs/react/get-started/) 173 | - [react-twitter-embed](https://github.com/saurabhnemade/react-twitter-embed) 174 | - [react-easy-emoji](https://github.com/appfigures/react-easy-emoji) 175 | - [react-headroom](https://github.com/KyleAMathews/react-headroom) 176 | - [color-thief](https://github.com/lokesh/color-thief) 177 | 178 | ## Illustrations 179 | - [UnDraw](https://undraw.co/illustrations) 180 | 181 | ## License 📄 182 | 183 | This project is licensed under the GPL-3.0 License - see the [LICENSE](./LICENSE) file for details 184 | 185 | 186 | ## Contributors ✨ 187 | 188 | Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 |

Saad Pasta

Kartik Choudhary

Naveen M K
200 | 201 | 202 | 203 | 204 | 205 | --- 206 | 207 | -------------------------------------------------------------------------------- /fetch.js: -------------------------------------------------------------------------------- 1 | var fs = require("fs"); 2 | const https = require("https"); 3 | var process = require("process"); 4 | require("dotenv").config(); 5 | 6 | const GITHUB_TOKEN = process.env.REACT_APP_GITHUB_TOKEN; 7 | const GITHUB_USERNAME = process.env.GITHUB_USERNAME; 8 | 9 | if (GITHUB_USERNAME === undefined) { 10 | throw "Github Username was found to be undefined. Please set an Environment variable."; 11 | } 12 | 13 | console.log(`fetching profile for ${GITHUB_USERNAME}`); 14 | var data = JSON.stringify({ 15 | query: ` 16 | { 17 | user(login:"${GITHUB_USERNAME}") { 18 | name 19 | bio 20 | isHireable 21 | avatarUrl 22 | location 23 | pinnedItems(first: 6, types: [REPOSITORY]) { 24 | totalCount 25 | edges { 26 | node { 27 | ... on Repository { 28 | name 29 | description 30 | forkCount 31 | stargazers { 32 | totalCount 33 | } 34 | url 35 | id 36 | diskUsage 37 | primaryLanguage { 38 | name 39 | color 40 | } 41 | } 42 | } 43 | } 44 | } 45 | } 46 | } 47 | `, 48 | }); 49 | const default_options = { 50 | hostname: "api.github.com", 51 | path: "/graphql", 52 | port: 443, 53 | method: "POST", 54 | headers: { 55 | Authorization: `Bearer ${GITHUB_TOKEN}`, 56 | "User-Agent": "Node", 57 | }, 58 | }; 59 | 60 | const req = https.request(default_options, (res) => { 61 | let data = ""; 62 | console.log(`statusCode: ${res.statusCode}`); 63 | if (res.statusCode != 200) { 64 | throw "The request to Github didn't suceed. Maybe check Github Token?"; 65 | } 66 | 67 | res.on("data", (d) => { 68 | data += d; 69 | }); 70 | res.on("end", () => { 71 | fs.writeFile("./public/profile.json", data, function (err) { 72 | if (err) return console.log(err); 73 | console.log("saved file to public/profile.json"); 74 | }); 75 | }); 76 | }); 77 | 78 | req.on("error", (error) => { 79 | throw error; 80 | }); 81 | 82 | req.write(data); 83 | req.end(); 84 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "homepage": "https://bharatkammakatla.github.io/", 3 | "name": "bharatkammakatla.github.io", 4 | "version": "0.1.0", 5 | "private": true, 6 | "dependencies": { 7 | "colorthief": "^2.3.0", 8 | "gh-pages": "^2.2.0", 9 | "react": "^16.10.2", 10 | "react-dom": "^16.10.2", 11 | "react-easy-emoji": "^1.3.0", 12 | "react-headroom": "^3.0.0", 13 | "react-reveal": "^1.2.2", 14 | "react-scripts": "3.2.0", 15 | "react-twitter-embed": "3.0.3" 16 | }, 17 | "scripts": { 18 | "predeploy": "npm run build", 19 | "start": "node fetch.js && react-scripts start", 20 | "build": "node fetch.js && react-scripts build", 21 | "deploy": "gh-pages -b master -d build", 22 | "test": "react-scripts test", 23 | "eject": "react-scripts eject", 24 | "dev": "NODE_OPTIONS=--openssl-legacy-provider react-scripts start" 25 | }, 26 | "eslintConfig": { 27 | "extends": "react-app" 28 | }, 29 | "browserslist": { 30 | "production": [ 31 | ">0.2%", 32 | "not dead", 33 | "not op_mini all" 34 | ], 35 | "development": [ 36 | "last 1 chrome version", 37 | "last 1 firefox version", 38 | "last 1 safari version" 39 | ] 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 21 | 22 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 43 | Bharat Kammakatla 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 |
67 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Bharat Kammakatla", 3 | "name": "Bharat Kammakatla", 4 | "icons": [ 5 | { 6 | "src": "/favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | } 10 | ], 11 | "start_url": ".", 12 | "display": "standalone", 13 | "theme_color": "#001C55", 14 | "background_color": "#ffffff" 15 | } 16 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | https://bharatkammakatla.com/ 12 | 2020-06-08T15:54:32+00:00 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | } 8 | 9 | .App-header { 10 | background-color: #282c34; 11 | min-height: 100vh; 12 | display: flex; 13 | flex-direction: column; 14 | align-items: center; 15 | justify-content: center; 16 | font-size: calc(10px + 2vmin); 17 | color: white; 18 | } 19 | 20 | .App-link { 21 | color: #09d3ac; 22 | } 23 | 24 | .heading { 25 | color: black; 26 | } 27 | 28 | .subTitle { 29 | color: #868e96; 30 | } 31 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import logo from "./logo.svg"; 3 | import "./App.css"; 4 | import Main from "./containers/Main"; 5 | 6 | function App() { 7 | return ( 8 |
9 |
10 |
11 | ); 12 | } 13 | 14 | export default App; 15 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import App from './App'; 4 | 5 | it('renders without crashing', () => { 6 | const div = document.createElement('div'); 7 | ReactDOM.render(, div); 8 | ReactDOM.unmountComponentAtNode(div); 9 | }); 10 | -------------------------------------------------------------------------------- /src/assets/fonts/Agustina.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/fonts/Agustina.woff -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/assets/images/cognizant-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/cognizant-logo.png -------------------------------------------------------------------------------- /src/assets/images/contactMail.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/contactMail.webp -------------------------------------------------------------------------------- /src/assets/images/cx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/cx-logo.png -------------------------------------------------------------------------------- /src/assets/images/developerActivity.svg: -------------------------------------------------------------------------------- 1 | code_thinking -------------------------------------------------------------------------------- /src/assets/images/ibm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/ibm_logo.png -------------------------------------------------------------------------------- /src/assets/images/jsFramework.svg: -------------------------------------------------------------------------------- 1 | JavaScript frameworks -------------------------------------------------------------------------------- /src/assets/images/manOnTable.svg: -------------------------------------------------------------------------------- 1 | Designer -------------------------------------------------------------------------------- /src/assets/images/meta_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/meta_pic.png -------------------------------------------------------------------------------- /src/assets/images/pierian-data-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/pierian-data-logo.png -------------------------------------------------------------------------------- /src/assets/images/quoraLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/quoraLogo.png -------------------------------------------------------------------------------- /src/assets/images/rahulshettyacademy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/rahulshettyacademy-logo.png -------------------------------------------------------------------------------- /src/assets/images/seetest-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/seetest-logo.png -------------------------------------------------------------------------------- /src/assets/images/skill.svg: -------------------------------------------------------------------------------- 1 | certificate -------------------------------------------------------------------------------- /src/assets/images/tcs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/tcs-logo.png -------------------------------------------------------------------------------- /src/assets/images/vskills-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/vskills-logo.png -------------------------------------------------------------------------------- /src/assets/images/zero-to-mastery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BharatKammakatla/Developer-Portfolio/86853355f37873d86b304d1e89f1e01967e331c2/src/assets/images/zero-to-mastery.png -------------------------------------------------------------------------------- /src/components/blogCard/BlogCard.css: -------------------------------------------------------------------------------- 1 | .blog-container { 2 | border-radius: 10px; 3 | color: #586069; 4 | background-color: #fff; 5 | box-shadow: 0 0 36px rgba(0, 0, 0, 0.1); 6 | /* padding: 2rem; */ 7 | cursor: pointer; 8 | height: 200px; 9 | } 10 | 11 | .blog-title { 12 | color: #262626; 13 | font-size: 20px; 14 | line-height: 24px; 15 | font-weight: 700; 16 | margin-left: 20px; 17 | margin-right: 20px; 18 | margin-bottom: 14px; 19 | margin-top: 32px; 20 | overflow: hidden; 21 | display: -webkit-box; 22 | -webkit-line-clamp: 2; 23 | -webkit-box-orient: vertical; 24 | } 25 | 26 | .small { 27 | font-size: 17px; 28 | font-weight: 400; 29 | line-height: 20px; 30 | color: #666666; 31 | padding: 0px 20px; 32 | overflow: hidden; 33 | display: -webkit-box; 34 | -webkit-line-clamp: 4; 35 | -webkit-box-orient: vertical; 36 | margin: 0px; 37 | } 38 | 39 | .go-corner { 40 | display: flex; 41 | align-items: center; 42 | justify-content: center; 43 | position: absolute; 44 | width: 32px; 45 | height: 32px; 46 | overflow: hidden; 47 | top: 0; 48 | right: 0; 49 | background-color: #001C55; 50 | border-radius: 0 10px 0 32px; 51 | } 52 | 53 | .go-arrow { 54 | margin-top: -4px; 55 | margin-right: -4px; 56 | color: white; 57 | font-family: courier, sans; 58 | } 59 | 60 | .blog-card { 61 | display: block; 62 | position: relative; 63 | background-color: transparent; 64 | border-radius: 10px; 65 | text-decoration: none; 66 | z-index: 0; 67 | overflow: hidden; 68 | height: 100%; 69 | } 70 | 71 | .blog-card::before { 72 | content: ""; 73 | position: absolute; 74 | z-index: -1; 75 | top: -16px; 76 | right: -16px; 77 | background: #001C55; 78 | height: 32px; 79 | width: 32px; 80 | border-radius: 32px; 81 | transform: scale(1); 82 | transform-origin: 50% 50%; 83 | transition: transform 0.4s ease-out; 84 | } 85 | 86 | .blog-card:hover::before { 87 | transform: scale(30); 88 | } 89 | 90 | .blog-card:hover > .small { 91 | transition: all 0.3s ease-out; 92 | color: rgba(255, 255, 255, 0.8); 93 | } 94 | 95 | .blog-card:hover > h3 { 96 | transition: all 0.3s ease-out; 97 | color: #ffffff; 98 | } 99 | 100 | @media screen and (max-width: 480px) and (min-width: 300px), (min-width: 925px) and (max-width: 1024px), (min-width: 1405px) and (max-width: 1550px) { 101 | .blog-card:hover::before { 102 | transform: scale(30); 103 | } 104 | } 105 | 106 | @media screen and (min-width: 481px) and (max-width: 675px), (min-width: 1025px) and (max-width: 1404px), (min-width: 1551px) { 107 | .blog-card:hover::before { 108 | transform: scale(40); 109 | } 110 | .blog-card::before { 111 | transition: transform 0.45s ease-out; 112 | } 113 | } 114 | 115 | @media screen and (min-width: 675px) and (max-width: 860px) { 116 | .blog-card:hover::before { 117 | transform: scale(50); 118 | } 119 | .blog-card::before { 120 | transition: transform 0.5s ease-out; 121 | } 122 | } 123 | 124 | @media screen and (min-width: 860px) and (max-width: 924px) { 125 | .blog-card:hover::before { 126 | transform: scale(60); 127 | } 128 | .blog-card::before { 129 | transition: transform 0.5s ease-out; 130 | } 131 | } 132 | 133 | @media screen and (max-width: 480px) and (min-width: 300px) { 134 | .blog-title { 135 | font-size: 18px; 136 | } 137 | } 138 | -------------------------------------------------------------------------------- /src/components/blogCard/BlogCard.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./BlogCard.css"; 3 | import { Fade } from "react-reveal"; 4 | 5 | export default function BlogCard({ blog }) { 6 | function openUrlInNewTab(url) { 7 | if (url !== undefined) { 8 | var win = window.open(url, "_blank"); 9 | win.focus(); 10 | } 11 | } 12 | 13 | return ( 14 | 15 |
16 | 28 |
29 |
30 | ); 31 | } 32 | -------------------------------------------------------------------------------- /src/components/button/Button.css: -------------------------------------------------------------------------------- 1 | .main-button { 2 | background-color: #001C55; 3 | border: solid 1px #001C55; 4 | color: white; 5 | font-weight: 700; 6 | width: max-content; 7 | padding: 13px 22px; 8 | margin-right: 50px; 9 | text-transform: uppercase; 10 | border-radius: 6px; 11 | text-align: center; 12 | text-decoration: none; 13 | display: block; 14 | margin-top: 20px; 15 | font-size: 16px; 16 | cursor: pointer; 17 | transition: all .3s ease-in-out 0s; 18 | } 19 | .main-button:hover { 20 | background-color: #ffffff; 21 | color: black; 22 | transition: all .3s ease 0s; 23 | transform: translateY(-3px); 24 | } 25 | .project-button{ 26 | display: flex; 27 | justify-content: center; 28 | margin-top: 20px; 29 | 30 | } 31 | /* Media Query */ 32 | @media (max-width: 768px) { 33 | .main-button { 34 | font-size: 15px; 35 | padding: 12px 18px; 36 | margin-right: 0px; 37 | } 38 | } 39 | @media (max-width: 320px) { 40 | .main-button { 41 | font-size: 12px; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/components/button/Button.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Button.css"; 3 | 4 | export default function Button({ text, className, href, newTab }) { 5 | return ( 6 | 11 | ); 12 | } 13 | -------------------------------------------------------------------------------- /src/components/certificationCard/CertificationCard.css: -------------------------------------------------------------------------------- 1 | .cert-card { 2 | display: inline-block; 3 | justify-content:center; 4 | align-items: center; 5 | text-align: center; 6 | border-radius: 10px; 7 | box-shadow: 0 0 36px rgba(0, 0, 0, 0.1); 8 | flex: 0 0 30%; 9 | } 10 | 11 | .cert-header { 12 | margin: 0px; 13 | border-radius: 10px 10px 0px 0px; 14 | } 15 | 16 | .logo_img { 17 | margin: 3px; 18 | width: auto; 19 | height: 100px; 20 | } 21 | 22 | .cert-body { 23 | margin: 0px; 24 | } 25 | 26 | .cert-body-title { 27 | font-size: 20px; 28 | margin: 10px; 29 | } 30 | 31 | .cert-body-subtitle { 32 | font-size: 17px; 33 | color: #808080; 34 | margin: 10px; 35 | } 36 | 37 | .content { 38 | position: relative; 39 | width: 100%; 40 | margin: auto; 41 | overflow: hidden; 42 | border-radius: 10px 10px 0px 0px; 43 | } 44 | 45 | .content .content-overlay { 46 | background: rgba(0,0,0,0.7); 47 | position: absolute; 48 | height: 99%; 49 | width: 100%; 50 | left: 0; 51 | top: 0; 52 | bottom: 0; 53 | right: 0; 54 | opacity: 0; 55 | -webkit-transition: all 0.4s ease-in-out 0s; 56 | -moz-transition: all 0.4s ease-in-out 0s; 57 | transition: all 0.4s ease-in-out 0s; 58 | } 59 | 60 | .content:hover .content-overlay{ 61 | opacity: 1; 62 | } 63 | 64 | 65 | .content-details { 66 | position: absolute; 67 | text-align: center; 68 | padding-left: 1em; 69 | padding-right: 1em; 70 | width: 100%; 71 | top: 50%; 72 | left: 50%; 73 | opacity: 0; 74 | -webkit-transform: translate(-50%, -50%); 75 | -moz-transform: translate(-50%, -50%); 76 | transform: translate(-50%, -50%); 77 | -webkit-transition: all 0.3s ease-in-out 0s; 78 | -moz-transition: all 0.3s ease-in-out 0s; 79 | transition: all 0.3s ease-in-out 0s; 80 | } 81 | 82 | .content:hover .content-details{ 83 | top: 50%; 84 | left: 50%; 85 | opacity: 1; 86 | } 87 | 88 | .content-details h3{ 89 | color: #fff; 90 | font-weight: 500; 91 | letter-spacing: 0.15em; 92 | margin-bottom: 0.5em; 93 | text-transform: uppercase; 94 | } 95 | 96 | .fadeIn-top{ 97 | top: 20%; 98 | } 99 | 100 | @media screen and (max-width: 480px) and (min-width: 300px) { 101 | .cert-body-title { 102 | font-size: 18px; 103 | } 104 | } -------------------------------------------------------------------------------- /src/components/certificationCard/CertificationCard.js: -------------------------------------------------------------------------------- 1 | import React, { Component} from 'react'; 2 | import "./CertificationCard.css"; 3 | import {Fade} from 'react-reveal'; 4 | 5 | class CertificationCard extends Component { 6 | render(){ 7 | const certificate = this.props.certificate; 8 | return ( 9 | 10 |
11 | 26 |
27 |

{certificate.title}

28 |

{certificate.subtitle}

29 |
30 |
31 |
32 | ); 33 | } 34 | } 35 | 36 | export default CertificationCard; -------------------------------------------------------------------------------- /src/components/experienceCard/ExperienceCard.css: -------------------------------------------------------------------------------- 1 | .experience-card { 2 | position: relative; 3 | background-color: rgb(255, 255, 255); 4 | box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px -15px; 5 | border-radius: 10px; 6 | border: 1px solid rgba(211, 211, 211, 0.397); 7 | } 8 | 9 | .experience-card:hover { 10 | box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px -10px; 11 | } 12 | 13 | .experience-banner { 14 | background-position: center; 15 | background-repeat: no-repeat; 16 | background-size: 150%; 17 | background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)); 18 | border-radius: 10px 10px 0px 0px; 19 | -webkit-filter: blur(0px); 20 | -moz-filter: blur(0px); 21 | -o-filter: blur(0px); 22 | -ms-filter: blur(0px); 23 | filter: blur(0px); 24 | height: 11rem; 25 | display: flex; 26 | align-items: flex-end; 27 | justify-content: center; 28 | } 29 | 30 | .experience-blurred_div { 31 | position: absolute; 32 | background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)); 33 | -webkit-filter: blur(5px); 34 | -moz-filter: blur(5px); 35 | -o-filter: blur(5px); 36 | -ms-filter: blur(5px); 37 | filter: blur(5px); 38 | height: 11rem; 39 | top: 0; 40 | left: 0; 41 | width: 100%; 42 | border-radius: 10px 10px 0px 0px; 43 | } 44 | 45 | .experience-div-company { 46 | position: absolute; 47 | background: transparent; 48 | height: 9rem; 49 | top: 0; 50 | left: 0; 51 | width: 100%; 52 | display: flex; 53 | align-items: center; 54 | justify-content: center; 55 | } 56 | 57 | .experience-text-company { 58 | text-align: center; 59 | padding: 1.5rem; 60 | margin: 0; 61 | color: #fff; 62 | font-size: 25px; 63 | text-align: center; 64 | font-weight: 700; 65 | text-overflow: ellipsis; 66 | overflow: hidden; 67 | white-space: nowrap; 68 | } 69 | 70 | .experience-roundedimg { 71 | position: absolute; 72 | object-fit: cover; 73 | left: 0; 74 | right: 0; 75 | top: 7rem; 76 | margin-left: auto; 77 | margin-right: auto; 78 | width: 8rem; 79 | height: 8rem; 80 | box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3); 81 | border-radius: 50%; 82 | } 83 | 84 | .experience-text-role { 85 | text-align: center; 86 | color: black; 87 | font-weight: 700; 88 | font-size: 25px; 89 | margin: 0px; 90 | padding-top: 1.5rem; 91 | line-height: normal; 92 | } 93 | 94 | .experience-text-date { 95 | text-align: center; 96 | color: black; 97 | font-size: 20px; 98 | margin: 0px; 99 | padding-top: 1rem; 100 | font-weight: 600; 101 | } 102 | 103 | .experience-text-desc { 104 | text-align: center; 105 | } 106 | 107 | .experience-text-details { 108 | padding: 1.5rem; 109 | margin-top: 2rem; 110 | } 111 | 112 | /* Media Query */ 113 | 114 | @media (max-width: 1380px) { 115 | .experience-text-role { 116 | padding-top: 0.5rem; 117 | font-size: 22px; 118 | } 119 | .experience-text-company { 120 | font-size: 22px; 121 | } 122 | .experience-text-date { 123 | font-size: 18px; 124 | } 125 | .experience-roundedimg { 126 | width: 6.5rem; 127 | height: 6.5rem; 128 | } 129 | } 130 | 131 | @media (max-width: 768px) { 132 | .experience-text-role { 133 | font-size: 22px; 134 | } 135 | .experience-text-company { 136 | font-size: 22px; 137 | } 138 | .experience-text-date { 139 | font-size: 18px; 140 | } 141 | .experience-text-desc { 142 | font-size: 16px; 143 | } 144 | } -------------------------------------------------------------------------------- /src/components/experienceCard/ExperienceCard.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, createRef } from "react"; 2 | import "./ExperienceCard.css"; 3 | import ColorThief from "colorthief"; 4 | 5 | export default function ExperienceCard({ cardInfo }) { 6 | const [colorArrays, setColorArrays] = useState([]); 7 | const imgRef = createRef(); 8 | 9 | function getColorArrays() { 10 | const colorThief = new ColorThief(); 11 | setColorArrays(colorThief.getColor(imgRef.current)); 12 | } 13 | 14 | function rgb(values) { 15 | return typeof values === "undefined" ? null : "rgb(" + values.join(', ') + ")"; 16 | } 17 | 18 | const GetDescBullets = ({ descBullets }) => { 19 | return descBullets ? descBullets.map((item) =>
  • {item}
  • ) : null 20 | }; 21 | 22 | return ( 23 |
    24 |
    25 |
    26 |
    27 |
    {cardInfo.company}
    28 |
    29 | 30 | {cardInfo.company} getColorArrays()}/> 31 |
    32 |
    33 |
    {cardInfo.role}
    34 |
    {cardInfo.date}
    35 |

    {cardInfo.desc}

    36 |
      37 | 38 |
    39 |
    40 |
    41 | ); 42 | } 43 | -------------------------------------------------------------------------------- /src/components/footer/Footer.css: -------------------------------------------------------------------------------- 1 | .footer-text { 2 | text-align: center; 3 | color: #868e96; 4 | } 5 | 6 | .footer-div { 7 | margin-top: 2rem; 8 | 9 | } 10 | -------------------------------------------------------------------------------- /src/components/footer/Footer.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Footer.css"; 3 | import { Fade } from "react-reveal"; 4 | import emoji from "react-easy-emoji"; 5 | 6 | export default function Footer() { 7 | return ( 8 | 9 |
    10 |

    {emoji("Made with ❤️ by Bharat Kammakatla")}

    11 |
    12 |
    13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /src/components/githubProfileCard/GithubProfileCard.css: -------------------------------------------------------------------------------- 1 | .profile-image { 2 | border-radius: 50%; 3 | border: 0.5rem solid #001C55; 4 | margin-left: auto; 5 | width: 100%; 6 | max-width: 350px; 7 | height: auto; 8 | } 9 | 10 | .profile-image:hover { 11 | box-shadow: rgba(0, 0, 0, 1) 0 30px 30px -30px; 12 | transition: all 0.3s ease-out; 13 | } 14 | 15 | .prof-title { 16 | margin: 0; 17 | font-size: 40px; 18 | font-weight: 400; 19 | } 20 | 21 | .location-div { 22 | text-shadow: blanchedalmond; 23 | } 24 | 25 | .opp-div { 26 | padding-bottom: 1rem; 27 | } 28 | 29 | .row { 30 | display: flex; 31 | } 32 | 33 | .main-content-profile { 34 | flex: 80%; 35 | } 36 | 37 | .image-content-profile { 38 | text-align: right; 39 | flex: 20%; 40 | max-width: 100%; 41 | height: auto; 42 | } 43 | 44 | .bio-text { 45 | line-height: 30px; 46 | font-size: 22px; 47 | } 48 | 49 | .desc-prof { 50 | line-height: 45px; 51 | font-size: 19px; 52 | } 53 | 54 | @media (max-width: 768px) { 55 | .row { 56 | display: flex; 57 | flex-direction: column; 58 | } 59 | 60 | .main-content-profile { 61 | text-align: center; 62 | order: 2; 63 | } 64 | 65 | .bio-text { 66 | font-size: 16px; 67 | } 68 | 69 | .image-content-profile { 70 | margin-left: auto; 71 | margin-right: auto; 72 | order: 1; 73 | } 74 | 75 | .desc-prof { 76 | line-height: 30px; 77 | font-size: 16px; 78 | } 79 | 80 | .profile-image { 81 | margin-left: auto; 82 | margin-right: auto; 83 | width: 100%; 84 | max-width: 250px; 85 | height: auto; 86 | } 87 | 88 | .profile-image:hover { 89 | box-shadow: rgba(0, 0, 0, 1) 0 50px 50px -50px; 90 | transition: 0.3s ease-out; 91 | } 92 | 93 | .prof-title { 94 | padding-bottom: 1rem; 95 | font-size: 32px; 96 | text-align: center; 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /src/components/githubProfileCard/GithubProfileCard.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./GithubProfileCard.css"; 3 | import SocialMedia from "../../components/socialMedia/SocialMedia"; 4 | import { contactInfo } from "../../portfolio"; 5 | import emoji from "react-easy-emoji"; 6 | import { Fade } from "react-reveal"; 7 | 8 | export default function GithubProfileCard({ prof }) { 9 | if (prof.hireable === true) { 10 | prof.hireable = "Yes"; 11 | } else { 12 | prof.hireable = "No"; 13 | } 14 | return ( 15 | 16 |
    17 |

    Reach Out to me!

    18 |
    19 |
    20 |
    21 |

    {contactInfo.subtitle}

    22 |
    23 |

    {emoji(String(prof.bio))}

    24 | {prof.location !== null && ( 25 |
    26 | 27 | 39 | {prof.location} 40 | 41 |
    42 | )} 43 |
    44 | 45 | Open for opportunities: {prof.hireable} 46 | 47 |
    48 | 49 |
    50 |
    51 | {prof.name} 56 |
    57 |
    58 |
    59 |
    60 | ); 61 | } 62 | -------------------------------------------------------------------------------- /src/components/githubRepoCard/GithubRepoCard.css: -------------------------------------------------------------------------------- 1 | .repo-card-div { 2 | color: rgb(88, 96, 105); 3 | background-color: rgb(255, 255, 255); 4 | box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 30px -15px; 5 | padding: 2rem; 6 | cursor: pointer; 7 | } 8 | .repo-card-div:hover { 9 | box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px -10px; 10 | } 11 | 12 | .repo-stats { 13 | display: flex; 14 | -webkit-box-pack: justify; 15 | justify-content: space-between; 16 | font-size: 13px; 17 | color: rgb(106, 115, 125); 18 | } 19 | 20 | .repo-left-stat { 21 | -webkit-box-flex: 1; 22 | flex-grow: 1; 23 | display: flex; 24 | } 25 | 26 | .language-color { 27 | width: 10px; 28 | height: 10px; 29 | background-color: blue; 30 | margin-right: 0.25rem; 31 | border-radius: 100%; 32 | } 33 | 34 | .repo-left-stat span { 35 | display: flex; 36 | -webkit-box-align: center; 37 | align-items: center; 38 | margin-right: 0.75rem; 39 | } 40 | 41 | .repo-name-div { 42 | display: flex; 43 | align-items: center; 44 | } 45 | 46 | .repo-svg { 47 | margin-right: 0.5rem; 48 | min-width: 16px; 49 | } 50 | 51 | .repo-name { 52 | white-space: nowrap; 53 | text-overflow: ellipsis; 54 | color: rgb(36, 41, 46); 55 | margin-bottom: 0.75rem; 56 | font-size: 20px; 57 | font-weight: 700; 58 | letter-spacing: -0.5px; 59 | overflow: hidden; 60 | margin: 0px; 61 | } 62 | 63 | .repo-star-svg { 64 | margin-right: 0.3rem; 65 | } 66 | 67 | .repo-description { 68 | overflow: hidden; 69 | display: -webkit-box; 70 | -webkit-line-clamp: 2; 71 | -webkit-box-orient: vertical; 72 | } 73 | -------------------------------------------------------------------------------- /src/components/githubRepoCard/GithubRepoCard.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./GithubRepoCard.css"; 3 | import { Fade } from "react-reveal"; 4 | 5 | export default function GithubRepoCard({ repo }) { 6 | function openRepoinNewTab(url) { 7 | var win = window.open(url, "_blank"); 8 | win.focus(); 9 | } 10 | 11 | return ( 12 | 13 |
    14 |
    openRepoinNewTab(repo.node.url)} 18 | > 19 |
    20 | 34 |

    {repo.node.name}

    35 |
    36 |

    {repo.node.description}

    37 |
    38 |
    39 | 40 |
    44 |

    {repo.node.primaryLanguage.name}

    45 |
    46 | {/* 47 | 53 |

    {repo.node.forkCount}

    54 |
    */} 55 | {/* 56 | 59 |

    {repo.node.stargazers.totalCount}

    60 |
    */} 61 |
    62 |
    63 |

    {repo.node.diskUsage} KB

    64 |
    65 |
    66 |
    67 |
    68 |
    69 | ); 70 | } 71 | -------------------------------------------------------------------------------- /src/components/header/Header.css: -------------------------------------------------------------------------------- 1 | /* header */ 2 | 3 | .header { 4 | max-width: 100%; 5 | padding: 0px 20px; 6 | margin: 0px auto; 7 | background-color: #fff; 8 | } 9 | 10 | .header ul { 11 | margin: 0; 12 | padding: 0; 13 | list-style: none; 14 | overflow: hidden; 15 | } 16 | .grey-color { 17 | color: #868e96; 18 | } 19 | 20 | .header li a { 21 | display: block; 22 | padding: 20px 20px; 23 | color: black; 24 | text-decoration: none; 25 | } 26 | 27 | .header li a:hover, 28 | .header .menu-btn:hover { 29 | background-color: #f4f4f4; 30 | } 31 | 32 | .header .logo { 33 | display: block; 34 | flex: none; 35 | float: left; 36 | font-size: 1.5em; 37 | text-decoration: none; 38 | margin-top: 10px; 39 | line-height: normal; 40 | } 41 | .header .logo-name { 42 | font-family: 'Agustina Regular'; 43 | font-weight: bold; 44 | font-variant-ligatures: no-common-ligatures; 45 | -webkit-font-variant-ligatures: no-common-ligatures; 46 | padding: 0 10px; 47 | color: #001C55; 48 | } 49 | 50 | /* menu */ 51 | 52 | .header .menu { 53 | clear: both; 54 | max-height: 0; 55 | transition: max-height 0.2s ease-out; 56 | } 57 | 58 | /* menu icon */ 59 | 60 | .header .menu-icon { 61 | cursor: pointer; 62 | display: inline-block; 63 | float: right; 64 | padding: 28px 20px; 65 | position: relative; 66 | user-select: none; 67 | } 68 | 69 | .header .menu-icon .navicon { 70 | background: #333; 71 | display: block; 72 | height: 2px; 73 | position: relative; 74 | transition: background 0.2s ease-out; 75 | width: 18px; 76 | } 77 | 78 | .header .menu-icon .navicon:before, 79 | .header .menu-icon .navicon:after { 80 | background: #333; 81 | content: ""; 82 | display: block; 83 | height: 100%; 84 | position: absolute; 85 | transition: all 0.2s ease-out; 86 | width: 100%; 87 | } 88 | 89 | .header .menu-icon .navicon:before { 90 | top: 5px; 91 | } 92 | 93 | .header .menu-icon .navicon:after { 94 | top: -5px; 95 | } 96 | 97 | /* menu btn */ 98 | 99 | .header .menu-btn { 100 | display: none; 101 | } 102 | 103 | .header .menu-btn:checked ~ .menu { 104 | max-height: 370px; 105 | } 106 | 107 | .header .menu-btn:checked ~ .menu-icon .navicon { 108 | background: transparent; 109 | } 110 | 111 | .header .menu-btn:checked ~ .menu-icon .navicon:before { 112 | transform: rotate(-45deg); 113 | } 114 | 115 | .header .menu-btn:checked ~ .menu-icon .navicon:after { 116 | transform: rotate(45deg); 117 | } 118 | 119 | .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, 120 | .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after { 121 | top: 0; 122 | } 123 | 124 | /* 48em = 768px */ 125 | 126 | @media (min-width: 48em) { 127 | .header li { 128 | float: left; 129 | } 130 | .header { 131 | display: flex; 132 | align-items: center; 133 | justify-content: space-between; 134 | } 135 | .header .menu { 136 | max-height: none; 137 | } 138 | .header .menu-icon { 139 | display: none; 140 | } 141 | } 142 | @media (max-width: 960px) and (min-width: 768px) { 143 | .header { 144 | font-size: 12px; 145 | } 146 | } 147 | -------------------------------------------------------------------------------- /src/components/header/Header.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Header.css"; 3 | import Headroom from "react-headroom"; 4 | import {greeting, workExperiences} from "../../portfolio"; 5 | 6 | function Header() { 7 | const exp = workExperiences.viewExperiences; 8 | return ( 9 | 10 |
    11 | 12 | < 13 | {greeting.username} 14 | /> 15 | 16 | 17 | 20 | 51 |
    52 |
    53 | ); 54 | } 55 | export default Header; 56 | -------------------------------------------------------------------------------- /src/components/socialMedia/SocialMedia.css: -------------------------------------------------------------------------------- 1 | .social-media-div { 2 | font-size: 2em; 3 | } 4 | 5 | .icon-button { 6 | margin-bottom: 10px; 7 | } 8 | 9 | .icon-button i { 10 | color: white; 11 | border-radius: 2.6rem; 12 | cursor: pointer; 13 | display: inline-block; 14 | font-size: 1.3rem; 15 | height: 2.6rem; 16 | line-height: 2.6rem; 17 | margin: 0 5px; 18 | position: relative; 19 | text-align: center; 20 | -webkit-user-select: none; 21 | -moz-user-select: none; 22 | -ms-user-select: none; 23 | user-select: none; 24 | width: 2.6rem; 25 | margin-bottom: 10px; 26 | } 27 | 28 | .facebook i { 29 | background-color: #3b5998; 30 | } 31 | 32 | .linkedin i { 33 | background-color: #0e76a8; 34 | } 35 | 36 | .github i { 37 | background-color: #333; 38 | } 39 | 40 | .gitlab i { 41 | background-color: #fca326; 42 | } 43 | 44 | .google i { 45 | background-color: #ea4335; 46 | } 47 | 48 | .twitter i { 49 | background-color: #1da1f2; 50 | } 51 | 52 | .instagram i { 53 | background-color: #c13584; 54 | } 55 | 56 | /* Hover Transition */ 57 | .twitter i:hover, 58 | .google i:hover, 59 | .gitlab i:hover, 60 | .github i:hover, 61 | .linkedin i:hover, 62 | .facebook i:hover, 63 | .instagram i:hover { 64 | background-color: black; 65 | transition: 0.3s ease-in; 66 | } 67 | 68 | /* Media Query */ 69 | @media (max-width: 768px) { 70 | .social-media-div { 71 | text-align: center; 72 | } 73 | } 74 | -------------------------------------------------------------------------------- /src/components/socialMedia/SocialMedia.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./SocialMedia.css"; 3 | import { socialMediaLinks } from "../../portfolio"; 4 | 5 | export default function socialMedia() { 6 | return ( 7 |
    8 | 9 | {socialMediaLinks.github ? 10 | ( 11 | 12 | 13 | ) 14 | : 15 | null} 16 | 17 | {socialMediaLinks.linkedin ? 18 | 19 | 20 | 21 | 22 | : 23 | null} 24 | 25 | {socialMediaLinks.gmail ? 26 | 27 | 28 | 29 | 30 | : 31 | null} 32 | 33 | {socialMediaLinks.gitlab ? 34 | 35 | 36 | 37 | 38 | : 39 | null } 40 | 41 | {socialMediaLinks.facebook ? 42 | 43 | 44 | 45 | 46 | : 47 | null} 48 | 49 | {socialMediaLinks.instagram ? 50 | 51 | 52 | 53 | 54 | : 55 | null} 56 | 57 | {socialMediaLinks.twitter ? 58 | 59 | 60 | 61 | 62 | : 63 | null} 64 | 65 |
    66 | ); 67 | } 68 | -------------------------------------------------------------------------------- /src/components/softwareSkills/SoftwareSkill.css: -------------------------------------------------------------------------------- 1 | .dev-icons { 2 | padding-left: 0; 3 | list-style: none; 4 | font-size: 3rem; 5 | margin-bottom: 0px; 6 | margin-top: 0px; 7 | text-align: center; 8 | } 9 | 10 | .software-skill-inline { 11 | display: inline-block; 12 | margin-right: 20px; 13 | margin-bottom: 20px; 14 | } 15 | 16 | .software-skill-inline > i { 17 | color: #868e96; 18 | } 19 | 20 | .software-skill-inline > i:hover { 21 | color: #645beb; 22 | } 23 | .software-skill-inline > p { 24 | color: #868e96; 25 | font-size: 10px; 26 | } 27 | .software-skill-inline > i:hover ~ p{ 28 | color: #645beb; 29 | } 30 | -------------------------------------------------------------------------------- /src/components/softwareSkills/SoftwareSkill.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./SoftwareSkill.css"; 3 | import { skillsSection } from "../../portfolio"; 4 | 5 | export default function SoftwareSkill() { 6 | return ( 7 |
    8 |
    9 |
      10 | {skillsSection.softwareSkills.map(skills => { 11 | return ( 12 |
    • 13 | 19 |

      {skills.skillName}

      20 |
    • 21 | ); 22 | })} 23 |
    24 |
    25 |
    26 | ); 27 | } 28 | -------------------------------------------------------------------------------- /src/containers/Main.js: -------------------------------------------------------------------------------- 1 | import React, { Component } from "react"; 2 | import Header from "../components/header/Header"; 3 | import Greeting from "./greeting/Greeting"; 4 | import Skills from "./skills/Skills"; 5 | import WorkExperience from "./workExperience/WorkExperience"; 6 | import Projects from "./projects/Projects"; 7 | import Blogs from "./blogs/Blogs"; 8 | import Footer from "../components/footer/Footer"; 9 | import Top from "./topbutton/Top"; 10 | import Profile from "./profile/Profile"; 11 | import Certifications from "./certifications/Certifications"; 12 | 13 | export default class Main extends Component { 14 | render() { 15 | return ( 16 |
    17 |
    18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
    26 | 27 |
    28 | ); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/containers/blogs/Blog.css: -------------------------------------------------------------------------------- 1 | /*Blog Cards Layout*/ 2 | .square { 3 | width: 440px; 4 | height: 430px; 5 | background: white; 6 | border-radius: 10px; 7 | box-shadow: 0px 20px 50px #d9dbdf; 8 | -webkit-transition: all 0.3s ease; 9 | -o-transition: all 0.3s ease; 10 | transition: all 0.3s ease; 11 | margin-top: 30px; 12 | } 13 | 14 | .square:hover { 15 | box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); 16 | } 17 | 18 | .blog-header-text { 19 | font-size: 56px; 20 | font-weight: 400; 21 | } 22 | 23 | .blog-subtitle { 24 | text-transform: uppercase; 25 | } 26 | .blog-main-div > * { 27 | flex: 1; 28 | margin-bottom: 30px; 29 | } 30 | .blog-main-div { 31 | display: flex; 32 | } 33 | .blog-image-div > img { 34 | max-width: 100%; 35 | height: auto; 36 | } 37 | .blog-text-div{ 38 | display: grid; 39 | grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 40 | gap: 32px; 41 | } 42 | 43 | /* Media Query */ 44 | @media (max-width: 1380px) { 45 | .blog-header-text { 46 | font-size: 40px; 47 | } 48 | } 49 | @media (max-width: 768px) { 50 | .blog-header-text { 51 | font-size: 30px; 52 | text-align: center; 53 | } 54 | .blog-subtitle { 55 | font-size: 16px; 56 | line-height: normal; 57 | text-align: center; 58 | } 59 | } 60 | 61 | @media screen and (max-width: 480px) and (min-width:300px){ 62 | .blog-text-div{ 63 | grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 64 | } 65 | } -------------------------------------------------------------------------------- /src/containers/blogs/Blogs.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Blog.css"; 3 | import BlogCard from "../../components/blogCard/BlogCard"; 4 | import { blogSection } from "../../portfolio"; 5 | import { Fade } from "react-reveal"; 6 | 7 | export default function Blogs() { 8 | return ( 9 | 10 |
    11 |
    12 |

    {blogSection.title}

    13 |

    {blogSection.subtitle}

    14 |
    15 |
    16 |
    17 | {blogSection.blogs.map(blog => { 18 | return ( 19 | 27 | ); 28 | })} 29 |
    30 |
    31 |
    32 |
    33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /src/containers/certifications/Certifications.css: -------------------------------------------------------------------------------- 1 | /*Certification Cards Layout*/ 2 | .square { 3 | width: 440px; 4 | height: 430px; 5 | background: white; 6 | border-radius: 10px; 7 | box-shadow: 0px 20px 50px #d9dbdf; 8 | -webkit-transition: all 0.3s ease; 9 | -o-transition: all 0.3s ease; 10 | transition: all 0.3s ease; 11 | margin-top: 30px; 12 | } 13 | 14 | .square:hover { 15 | box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); 16 | } 17 | 18 | .cert-header-title { 19 | font-size: 56px; 20 | font-weight: 400; 21 | line-height: normal; 22 | } 23 | 24 | .cert-main-div > * { 25 | flex: 1; 26 | margin-bottom: 30px; 27 | } 28 | .cert-main-div { 29 | display: flex; 30 | } 31 | .cert-image-div > img { 32 | max-width: 100%; 33 | height: auto; 34 | } 35 | .cert-text-div{ 36 | display: grid; 37 | grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 38 | gap: 32px; 39 | } 40 | 41 | /* Media Query */ 42 | @media (max-width: 1380px) { 43 | .cert-header-title { 44 | font-size: 40px; 45 | } 46 | } 47 | @media (max-width: 768px) { 48 | .cert-header-title { 49 | font-size: 30px; 50 | text-align: center; 51 | } 52 | } 53 | 54 | @media screen and (max-width: 480px) and (min-width:300px){ 55 | .cert-text-div{ 56 | grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 57 | } 58 | } -------------------------------------------------------------------------------- /src/containers/certifications/Certifications.js: -------------------------------------------------------------------------------- 1 | import React, {Component} from 'react'; 2 | import './Certifications.css'; 3 | import { Fade } from "react-reveal"; 4 | import {certifications} from "../../portfolio"; 5 | import CertificationCard from '../../components/certificationCard/CertificationCard'; 6 | 7 | export default function Certifications() { 8 | return ( 9 | 10 |
    11 |

    Certifications

    12 |
    13 |
    14 | {certifications.certifications.map(cert => { 15 | return ; 16 | })} 17 |
    18 |
    19 |
    20 |
    21 | ); 22 | } 23 | -------------------------------------------------------------------------------- /src/containers/contact/Contact.css: -------------------------------------------------------------------------------- 1 | .contact-div-main { 2 | display: flex; 3 | } 4 | 5 | .contact-div-main > * { 6 | flex: 1; 7 | } 8 | 9 | .contact-title { 10 | font-size: 65px; 11 | font-weight: 400; 12 | } 13 | 14 | .contact-detail, 15 | .contact-detail-email { 16 | margin-top: 20px; 17 | font-size: 40px; 18 | font-weight: 400; 19 | color: #868e96; 20 | text-decoration: none; 21 | } 22 | 23 | .contact-detail:hover, 24 | .contact-detail-email:hover { 25 | color: black; 26 | text-shadow: 2px 1px 2px #b5b5b5; 27 | transition: all 0.3s; 28 | } 29 | 30 | .contact-subtitle { 31 | text-transform: uppercase; 32 | } 33 | 34 | .contact-text-div { 35 | margin-top: 1.5rem; 36 | } 37 | 38 | .contact-margin-top { 39 | margin-top: 4rem; 40 | } 41 | 42 | .contact-image-div > img { 43 | max-width: 100%; 44 | height: auto; 45 | margin-left: 1.5rem; 46 | margin-top: -4rem; 47 | } 48 | 49 | /* Media Query */ 50 | @media (max-width: 1380px), (max-width: 768px) { 51 | .contact-title { 52 | font-size: 56px; 53 | font-weight: 400; 54 | text-align: center; 55 | } 56 | 57 | .contact-title { 58 | font-size: 40px; 59 | text-align: center; 60 | } 61 | 62 | .contact-subtitle { 63 | font-size: 16px; 64 | line-height: normal; 65 | text-align: center; 66 | } 67 | 68 | .contact-text-div { 69 | text-align: center; 70 | margin-top: 1.5rem; 71 | } 72 | 73 | .contact-detail, 74 | .contact-detail-email { 75 | font-size: 20px; 76 | } 77 | 78 | .contact-image-div { 79 | display: none; 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /src/containers/contact/Contact.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Contact.css"; 3 | import SocialMedia from "../../components/socialMedia/SocialMedia"; 4 | import {contactInfo} from "../../portfolio"; 5 | import { Fade } from "react-reveal"; 6 | 7 | export default function Contact() { 8 | return ( 9 | 10 |
    11 |
    12 |
    13 |

    {contactInfo.title}

    14 |

    {contactInfo.subtitle}

    15 | 16 |
    17 | {contactInfo.number} 18 |

    19 | {contactInfo.email_address} 21 |

    22 | 23 |
    24 |
    25 |
    26 | Contact Mail 27 |
    28 |
    29 |
    30 |
    31 | ); 32 | } 33 | -------------------------------------------------------------------------------- /src/containers/greeting/Greeting.css: -------------------------------------------------------------------------------- 1 | .main { 2 | width: 90%; 3 | padding: 20px 10px; 4 | margin: 0px auto; 5 | margin-top: 4rem; 6 | } 7 | .greet-main { 8 | width: 90%; 9 | padding: 20px 10px; 10 | margin: 0px auto; 11 | margin-top: 2rem; 12 | } 13 | 14 | .gretting-main { 15 | width: 90%; 16 | padding: 20px 10px; 17 | margin: 0px auto; 18 | } 19 | 20 | .greeting-main { 21 | display: flex; 22 | } 23 | 24 | .greeting-main > * { 25 | flex: 1; 26 | margin-bottom: 30px; 27 | } 28 | .button-greeting-div { 29 | display: flex; 30 | margin-top: 20px; 31 | } 32 | 33 | .greeting-text { 34 | font-size: 70px; 35 | line-height: 1.1; 36 | } 37 | 38 | .greeting-text-p { 39 | font-size: 30px; 40 | line-height: 40px; 41 | } 42 | 43 | /* newly added block - start */ 44 | .greeting-image-div { 45 | display: flex; 46 | align-items: center; 47 | justify-content: center; 48 | } 49 | /* newly added block - end */ 50 | 51 | .greeting-image-div > img { 52 | max-width: 100%; 53 | height: auto; 54 | } 55 | .wave-emoji { 56 | animation-duration: 1.8s; 57 | animation-iteration-count: infinite; 58 | animation-name: wave; 59 | display: inline-block; 60 | transform-origin: 70% 70%; 61 | } 62 | 63 | @keyframes wave { 64 | 0% { 65 | transform: rotate(0deg); 66 | } 67 | 10% { 68 | transform: rotate(-10deg); 69 | } 70 | 20% { 71 | transform: rotate(12deg); 72 | } 73 | 30% { 74 | transform: rotate(-10deg); 75 | } 76 | 40% { 77 | transform: rotate(9deg); 78 | } 79 | 50% { 80 | transform: rotate(0deg); 81 | } 82 | 100% { 83 | transform: rotate(0deg); 84 | } 85 | } 86 | 87 | /* Media Query */ 88 | @media (max-width: 1380px) { 89 | .greeting-text { 90 | font-size: 50px; 91 | } 92 | .greeting-text-p { 93 | font-size: 20px; 94 | } 95 | } 96 | @media (max-width: 768px) { 97 | .button-greeting-div { 98 | justify-content: space-around; 99 | } 100 | .greeting-text { 101 | font-size: 30px; 102 | text-align: center; 103 | } 104 | .greeting-text-p { 105 | font-size: 16px; 106 | line-height: normal; 107 | text-align: center; 108 | } 109 | .greeting-main { 110 | display: block; 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /src/containers/greeting/Greeting.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Greeting.css"; 3 | import SocialMedia from "../../components/socialMedia/SocialMedia"; 4 | import Button from "../../components/button/Button"; 5 | import { greeting } from "../../portfolio"; 6 | import { Fade } from "react-reveal"; 7 | import emoji from "react-easy-emoji"; 8 | 9 | export default function Greeting() { 10 | return ( 11 | 12 |
    13 |
    14 |
    15 |
    16 |

    17 | {" "} 18 | {greeting.title}{" "} 19 | {emoji("👋")} 20 |

    21 |

    {greeting.subTitle}

    22 | 23 |
    24 |
    31 |
    32 |
    33 |
    34 | man at desk 38 |
    39 |
    40 |
    41 |
    42 | ); 43 | } 44 | -------------------------------------------------------------------------------- /src/containers/loading/Loading.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./loading.css"; 3 | 4 | export default function Loading() { 5 | return ( 6 |
    7 |
    8 |
    9 |
    10 |
    11 |
    12 |
    13 |
    14 |
    15 |
    16 |
    17 |
    18 |
    19 |
    20 |
    21 |
    22 | ); 23 | } 24 | -------------------------------------------------------------------------------- /src/containers/loading/loading.css: -------------------------------------------------------------------------------- 1 | .sk-circle { 2 | margin: 100px auto; 3 | width: 40px; 4 | height: 40px; 5 | position: relative; 6 | } 7 | .sk-circle .sk-child { 8 | width: 100%; 9 | height: 100%; 10 | position: absolute; 11 | left: 0; 12 | top: 0; 13 | } 14 | .sk-circle .sk-child:before { 15 | content: ''; 16 | display: block; 17 | margin: 0 auto; 18 | width: 15%; 19 | height: 15%; 20 | background-color: #333; 21 | border-radius: 100%; 22 | -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; 23 | animation: sk-circleBounceDelay 1.2s infinite ease-in-out both; 24 | } 25 | .sk-circle .sk-circle2 { 26 | -webkit-transform: rotate(30deg); 27 | -ms-transform: rotate(30deg); 28 | transform: rotate(30deg); } 29 | .sk-circle .sk-circle3 { 30 | -webkit-transform: rotate(60deg); 31 | -ms-transform: rotate(60deg); 32 | transform: rotate(60deg); } 33 | .sk-circle .sk-circle4 { 34 | -webkit-transform: rotate(90deg); 35 | -ms-transform: rotate(90deg); 36 | transform: rotate(90deg); } 37 | .sk-circle .sk-circle5 { 38 | -webkit-transform: rotate(120deg); 39 | -ms-transform: rotate(120deg); 40 | transform: rotate(120deg); } 41 | .sk-circle .sk-circle6 { 42 | -webkit-transform: rotate(150deg); 43 | -ms-transform: rotate(150deg); 44 | transform: rotate(150deg); } 45 | .sk-circle .sk-circle7 { 46 | -webkit-transform: rotate(180deg); 47 | -ms-transform: rotate(180deg); 48 | transform: rotate(180deg); } 49 | .sk-circle .sk-circle8 { 50 | -webkit-transform: rotate(210deg); 51 | -ms-transform: rotate(210deg); 52 | transform: rotate(210deg); } 53 | .sk-circle .sk-circle9 { 54 | -webkit-transform: rotate(240deg); 55 | -ms-transform: rotate(240deg); 56 | transform: rotate(240deg); } 57 | .sk-circle .sk-circle10 { 58 | -webkit-transform: rotate(270deg); 59 | -ms-transform: rotate(270deg); 60 | transform: rotate(270deg); } 61 | .sk-circle .sk-circle11 { 62 | -webkit-transform: rotate(300deg); 63 | -ms-transform: rotate(300deg); 64 | transform: rotate(300deg); } 65 | .sk-circle .sk-circle12 { 66 | -webkit-transform: rotate(330deg); 67 | -ms-transform: rotate(330deg); 68 | transform: rotate(330deg); } 69 | .sk-circle .sk-circle2:before { 70 | -webkit-animation-delay: -1.1s; 71 | animation-delay: -1.1s; } 72 | .sk-circle .sk-circle3:before { 73 | -webkit-animation-delay: -1s; 74 | animation-delay: -1s; } 75 | .sk-circle .sk-circle4:before { 76 | -webkit-animation-delay: -0.9s; 77 | animation-delay: -0.9s; } 78 | .sk-circle .sk-circle5:before { 79 | -webkit-animation-delay: -0.8s; 80 | animation-delay: -0.8s; } 81 | .sk-circle .sk-circle6:before { 82 | -webkit-animation-delay: -0.7s; 83 | animation-delay: -0.7s; } 84 | .sk-circle .sk-circle7:before { 85 | -webkit-animation-delay: -0.6s; 86 | animation-delay: -0.6s; } 87 | .sk-circle .sk-circle8:before { 88 | -webkit-animation-delay: -0.5s; 89 | animation-delay: -0.5s; } 90 | .sk-circle .sk-circle9:before { 91 | -webkit-animation-delay: -0.4s; 92 | animation-delay: -0.4s; } 93 | .sk-circle .sk-circle10:before { 94 | -webkit-animation-delay: -0.3s; 95 | animation-delay: -0.3s; } 96 | .sk-circle .sk-circle11:before { 97 | -webkit-animation-delay: -0.2s; 98 | animation-delay: -0.2s; } 99 | .sk-circle .sk-circle12:before { 100 | -webkit-animation-delay: -0.1s; 101 | animation-delay: -0.1s; } 102 | 103 | @-webkit-keyframes sk-circleBounceDelay { 104 | 0%, 80%, 100% { 105 | -webkit-transform: scale(0); 106 | transform: scale(0); 107 | } 40% { 108 | -webkit-transform: scale(1); 109 | transform: scale(1); 110 | } 111 | } 112 | 113 | @keyframes sk-circleBounceDelay { 114 | 0%, 80%, 100% { 115 | -webkit-transform: scale(0); 116 | transform: scale(0); 117 | } 40% { 118 | -webkit-transform: scale(1); 119 | transform: scale(1); 120 | } 121 | } 122 | -------------------------------------------------------------------------------- /src/containers/profile/Profile.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, lazy, Suspense } from "react"; 2 | import { openSource } from "../../portfolio"; 3 | import Contact from "../contact/Contact"; 4 | import Loading from "../loading/Loading"; 5 | 6 | const renderLoader = () => ; 7 | const GithubProfileCard = lazy(() => 8 | import("../../components/githubProfileCard/GithubProfileCard") 9 | ); 10 | export default function Profile() { 11 | const [prof, setrepo] = useState([]); 12 | function setProfileFunction(array) { 13 | setrepo(array); 14 | } 15 | useEffect(() => { 16 | if (openSource.showGithubProfile === "true") { 17 | const getProfileData = () => { 18 | fetch("/profile.json") 19 | .then((result) => { 20 | if (result.ok) { 21 | return result.json(); 22 | } 23 | console.error(result); 24 | }) 25 | .then((response) => { 26 | setProfileFunction(response.data.user); 27 | }) 28 | .catch(function (error) { 29 | setProfileFunction("Error"); 30 | console.log( 31 | "Because of this error, contact section has reverted to default" 32 | ); 33 | console.error(error); 34 | openSource.showGithubProfile = "false"; 35 | }); 36 | }; 37 | getProfileData(); 38 | } 39 | }, []); 40 | if ( 41 | openSource.display && 42 | openSource.showGithubProfile === "true" && 43 | !(typeof prof === "string" || prof instanceof String) 44 | ) { 45 | return ( 46 | 47 | 48 | 49 | ); 50 | } else { 51 | return ; 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/containers/projects/Project.css: -------------------------------------------------------------------------------- 1 | .project-title { 2 | font-size: 52px; 3 | font-weight: 400; 4 | line-height: normal; 5 | } 6 | 7 | .startup-project-text img{ 8 | max-width: 100%; 9 | height: auto; 10 | } 11 | 12 | .repo-cards-div-main { 13 | display: grid; 14 | grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 15 | gap: 1rem 1rem; 16 | } 17 | 18 | /* Media Query */ 19 | @media (max-width: 1380px) { 20 | .project-title { 21 | font-size: 40px; 22 | } 23 | } 24 | @media (max-width: 768px) { 25 | .project-title { 26 | font-size: 30px; 27 | text-align: center; 28 | } 29 | .repo-cards-div-main{ 30 | grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 31 | } 32 | } -------------------------------------------------------------------------------- /src/containers/projects/Projects.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, lazy, Suspense } from "react"; 2 | import "./Project.css"; 3 | import Button from "../../components/button/Button"; 4 | import Loading from "../loading/Loading"; 5 | import { socialMediaLinks } from "../../portfolio"; 6 | 7 | export default function Projects() { 8 | const GithubRepoCard = lazy(() => 9 | import("../../components/githubRepoCard/GithubRepoCard") 10 | ); 11 | const FailedLoading = () => null; 12 | const renderLoader = () => ; 13 | const [repo, setrepo] = useState([]); 14 | 15 | useEffect(() => { 16 | const getRepoData = () => { 17 | fetch("/profile.json") 18 | .then((result) => { 19 | if (result.ok) { 20 | return result.json(); 21 | } 22 | throw result; 23 | }) 24 | .then((response) => { 25 | setrepoFunction(response.data.user.pinnedItems.edges); 26 | }) 27 | .catch(function (error) { 28 | console.log(error); 29 | setrepoFunction("Error"); 30 | console.log( 31 | "Because of this Error, nothing is shown in place of Projects section. Projects section not configured" 32 | ); 33 | }); 34 | }; 35 | getRepoData(); 36 | }, []); 37 | 38 | function setrepoFunction(array) { 39 | setrepo(array); 40 | } 41 | if (!(typeof repo === "string" || repo instanceof String)) { 42 | return ( 43 | 44 |
    45 |

    Projects

    46 |
    47 | {repo.map((v, i) => { 48 | return ; 49 | })} 50 |
    51 |
    58 |
    59 | ); 60 | } else { 61 | return ; 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /src/containers/skills/Skills.css: -------------------------------------------------------------------------------- 1 | .skills-main-div { 2 | display: flex; 3 | } 4 | .skills-text-div { 5 | margin-left: 50px; 6 | } 7 | 8 | .skills-main-div > * { 9 | flex: 1; 10 | margin-bottom: 30px; 11 | } 12 | 13 | /* newly added block - start */ 14 | .skills-image-div { 15 | display: flex; 16 | align-items: center; 17 | justify-content: center; 18 | } 19 | /* newly added block - end */ 20 | 21 | .skills-image-div > img { 22 | max-width: 100%; 23 | height: auto; 24 | } 25 | 26 | .skills-heading { 27 | font-size: 56px; 28 | font-weight: 400; 29 | } 30 | 31 | /* Media Query */ 32 | @media (max-width: 1380px) { 33 | .skills-heading { 34 | font-size: 40px; 35 | } 36 | } 37 | @media (max-width: 768px) { 38 | .skills-heading { 39 | font-size: 30px; 40 | text-align: center; 41 | } 42 | .greeting-text-p { 43 | font-size: 16px; 44 | line-height: normal; 45 | } 46 | .skills-main-div { 47 | flex-direction: column 48 | } 49 | .skills-text-div { 50 | margin-left: 0px; 51 | margin: 20px; 52 | } 53 | .skills-text { 54 | font-size: 16px; 55 | } 56 | .skills-text-subtitle { 57 | font-size: 16px; 58 | text-align: center; 59 | } 60 | .skills-image-div { 61 | /* display: none; */ 62 | order: 2; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /src/containers/skills/Skills.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Skills.css"; 3 | import SoftwareSkill from "../../components/softwareSkills/SoftwareSkill"; 4 | import { skillsSection } from "../../portfolio"; 5 | import { Fade } from "react-reveal"; 6 | 7 | export default function Skills() { 8 | return ( 9 |
    10 |
    11 | 12 |
    13 | Bharat Working 17 |
    18 |
    19 | 20 |
    21 |

    {skillsSection.title}

    22 |

    23 | {skillsSection.subTitle} 24 |

    25 | 26 |
    27 | {skillsSection.skills.map((skills) => { 28 | return

    {skills}

    ; 29 | })} 30 |
    31 |
    32 |
    33 |
    34 |
    35 | ); 36 | } 37 | -------------------------------------------------------------------------------- /src/containers/topbutton/Top.css: -------------------------------------------------------------------------------- 1 | #topButton { 2 | visibility:hidden; 3 | position: fixed; 4 | bottom: 20px; 5 | right: 30px; 6 | z-index: 99; 7 | border: none; 8 | outline: none; 9 | background-color: #001C55; 10 | color: white; 11 | cursor: pointer; 12 | padding: 15px; 13 | border-radius: 15px; 14 | font-size: 25px; 15 | } 16 | 17 | #topButton:hover { 18 | background-color: #000; 19 | transition: all ease-in-out 0.2s; 20 | } 21 | -------------------------------------------------------------------------------- /src/containers/topbutton/Top.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Top.css"; 3 | 4 | export default function Top() { 5 | function TopEvent() { 6 | document.body.scrollTop = 0; // For Safari 7 | document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera 8 | } 9 | // When the user scrolls down 20px from the top of the document, show the button 10 | function scrollFunction() { 11 | if ( 12 | document.body.scrollTop > 20 || 13 | document.documentElement.scrollTop > 20 14 | ) { 15 | document.getElementById("topButton").style.visibility = "visible"; 16 | } else { 17 | document.getElementById("topButton").style.visibility = "hidden"; 18 | } 19 | } 20 | window.onscroll = function () { 21 | scrollFunction(); 22 | }; 23 | window.onload = function () { 24 | scrollFunction(); 25 | }; //To make sure that this button is not visible at starting. 26 | // When the user clicks on the button, scroll to the top of the document 27 | return ( 28 | 31 | ); 32 | } 33 | -------------------------------------------------------------------------------- /src/containers/workExperience/WorkExperience.css: -------------------------------------------------------------------------------- 1 | .experience-cards-div { 2 | display: grid; 3 | grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); 4 | gap: 1rem 1rem; 5 | } 6 | 7 | .experience-heading { 8 | font-size: 56px; 9 | font-weight: 400; 10 | } 11 | 12 | .experience-container { 13 | display: flex; 14 | width: 90%; 15 | padding: 20px 10px; 16 | margin: 0px auto; 17 | margin-top: 2rem; 18 | } 19 | 20 | .experience-container>* { 21 | flex: 1; 22 | } 23 | 24 | /* Media Query */ 25 | 26 | @media (max-width: 1380px) { 27 | .experience-heading { 28 | font-size: 40px; 29 | } 30 | } 31 | 32 | @media (max-width: 768px) { 33 | .experience-heading { 34 | font-size: 30px; 35 | text-align: center; 36 | } 37 | } -------------------------------------------------------------------------------- /src/containers/workExperience/WorkExperience.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./WorkExperience.css"; 3 | import ExperienceCard from "../../components/experienceCard/ExperienceCard"; 4 | import { workExperiences } from "../../portfolio"; 5 | import { Fade } from "react-reveal"; 6 | 7 | 8 | export default function WorkExperience() { 9 | if(workExperiences.viewExperiences){ 10 | return ( 11 |
    12 | 13 |
    14 |
    15 |

    Experiences

    16 |
    17 | {workExperiences.experience.map((card) => { 18 | return ( 19 | 29 | ); 30 | })} 31 |
    32 |
    33 |
    34 |
    35 |
    36 | ); 37 | } 38 | return null; 39 | } 40 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Agustina Regular'; 3 | font-style: normal; 4 | font-weight: normal; 5 | src: local('Agustina Regular'), url('./assets/fonts/Agustina.woff') format('woff'); 6 | font-display: swap; 7 | } 8 | @font-face { 9 | font-family: 'Montserrat'; 10 | src: local('Montserrat'), url('./assets/fonts/Montserrat-Regular.ttf') format('woff'); 11 | font-display: swap; 12 | } 13 | code { 14 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 15 | monospace; 16 | } 17 | html, 18 | body { 19 | scroll-behavior: smooth; 20 | } 21 | body { 22 | margin: 0; 23 | font: 19px / 23px Montserrat, "Montserrat", sans-serif; 24 | -webkit-font-smoothing: antialiased; 25 | -moz-osx-font-smoothing: grayscale; 26 | } 27 | /* Media Query */ 28 | @media (max-width: 1380px) { 29 | html, 30 | body { 31 | font-size: 16px; 32 | line-height: normal; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom"; 3 | import "./index.css"; 4 | import App from "./App"; 5 | import * as serviceWorker from "./serviceWorker"; 6 | 7 | ReactDOM.render(, document.getElementById("root")); 8 | 9 | // If you want your app to work offline and load faster, you can change 10 | // unregister() to register() below. Note this comes with some pitfalls. 11 | // Learn more about service workers: https://bit.ly/CRA-PWA 12 | serviceWorker.unregister(); 13 | -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/portfolio.js: -------------------------------------------------------------------------------- 1 | /* Change this file to get your personal Portfolio */ 2 | 3 | import emoji from "react-easy-emoji"; 4 | 5 | // Your Summary And Greeting Section 6 | 7 | const greeting = { 8 | username: "Bharat Kammakatla", 9 | title: "Hi all, I'm Bharat", 10 | subTitle: emoji( 11 | "Applications Developer 👨‍💻 | Test Automation Engineer ⚙️ | Tech Writer ✍️ " 12 | ), 13 | resumeLink: 14 | "https://docs.google.com/document/d/1LVBWauoSNFUP91jLR4-zKExI1CGKkZa_/edit?usp=share_link&ouid=100223492053731464282&rtpof=true&sd=true", 15 | }; 16 | 17 | // Your Social Media Link 18 | 19 | const socialMediaLinks = { 20 | github: "https://github.com/bharatkammakatla", 21 | linkedin: "https://www.linkedin.com/in/bharatkammakatla", 22 | gmail: "bharatkammakatla@gmail.com", 23 | facebook: "https://www.facebook.com/bharat.kammakatla", 24 | twitter: "https://twitter.com/Bharat__K", 25 | }; 26 | 27 | // Your Skills Section 28 | 29 | const skillsSection = { 30 | title: "What i do", 31 | subTitle: 32 | "HANDLING ALL APP DEVELOPMENT ACTIVITIES AND EXPLORING DATA SCIENCE", 33 | skills: [ 34 | emoji( 35 | "⚡ Designing and developing enterprise-level applications using React, Node, SQL, Mongo, etc" 36 | ), 37 | emoji("⚡ Implementing end-to-end application functionalities."), 38 | emoji( 39 | "⚡ Working with development tools like Git, Jenkins, Docker, and cloud services." 40 | ), 41 | emoji( 42 | "⚡ Building predictive models to derive insights and support data-driven decisions." 43 | ), 44 | ], 45 | 46 | softwareSkills: [ 47 | { 48 | skillName: "python", 49 | classname: "logos:python", 50 | style: { 51 | backgroundColor: "transparent", 52 | }, 53 | }, 54 | { 55 | skillName: "java", 56 | classname: "logos:java", 57 | style: { 58 | backgroundColor: "transparent", 59 | }, 60 | }, 61 | { 62 | skillName: "reactJS", 63 | classname: "simple-icons:react", 64 | style: { 65 | color: "#61DAFB", 66 | }, 67 | }, 68 | { 69 | skillName: "maven", 70 | classname: "vscode-icons:file-type-maven", 71 | style: { 72 | backgroundColor: "transparent", 73 | }, 74 | }, 75 | { 76 | skillName: "git", 77 | classname: "logos:git-icon", 78 | style: { 79 | backgroundColor: "transparent", 80 | }, 81 | }, 82 | { 83 | skillName: "jenkins", 84 | classname: "vscode-icons:file-type-jenkins", 85 | style: { 86 | backgroundColor: "transparent", 87 | }, 88 | }, 89 | { 90 | skillName: "postgres", 91 | classname: "logos:postgresql", 92 | style: { 93 | backgroundColor: "transparent", 94 | }, 95 | }, 96 | ], 97 | }; 98 | 99 | // Your top 3 work experiences 100 | 101 | const workExperiences = { 102 | viewExperiences: true, //Set it to true to show workExperiences Section 103 | experience: [ 104 | { 105 | role: "Solution Analyst", 106 | company: "Cathay Pacific Airways", 107 | companylogo: require("./assets/images/cx-logo.png"), 108 | date: "Jul 2024 – Present", 109 | desc: "Design, develop, and maintain enterprise-level applications, ensuring high performance and user satisfaction.", 110 | }, 111 | { 112 | role: "Associate Engineer", 113 | company: "Cognizant", 114 | companylogo: require("./assets/images/cognizant-logo.png"), 115 | date: "Aug 2022 – Jun 2024", 116 | desc: "Applications development and support of Java applications. Design and develop automation solutions for QA and OPS teams.", 117 | }, 118 | { 119 | role: "IT Analyst", 120 | company: "Tata Consultancy Services", 121 | companylogo: require("./assets/images/tcs-logo.png"), 122 | date: "Feb 2016 – Jul 2022", 123 | desc: "Design, develop and maintain enterprise level Test Automation frameworks.", 124 | }, 125 | ], 126 | }; 127 | 128 | /* Your Open Source Section to View Your Github Pinned Projects 129 | To know how to get github key look at readme.md */ 130 | 131 | const openSource = { 132 | showGithubProfile: "true", // Set true or false to show Contact profile using Github, defaults to false 133 | display: true, // Set false to hide this section, defaults to true 134 | }; 135 | 136 | // Your certifications 137 | 138 | const certifications = { 139 | certifications: [ 140 | { 141 | title: "Selenium", 142 | subtitle: "- Vskills", 143 | logo_path: "vskills-logo.png", 144 | certificate_link: 145 | "https://www.vskills.in/certification/40215-certified-selenium-professional-bharat-babu-kammakatla", 146 | alt_name: "Vskills", 147 | color_code: "#F6EAEA", 148 | }, 149 | { 150 | title: "Cloud Admin & Automation", 151 | subtitle: "- Experitest", 152 | logo_path: "seetest-logo.png", 153 | certificate_link: 154 | "https://drive.google.com/file/d/1qhh1ZUBB2VPrOaT6bNgiJ5Y2sHmCjvMg/view?usp=drivesdk", 155 | alt_name: "Experitest", 156 | color_code: "#F0FFDD", 157 | }, 158 | { 159 | title: "Python", 160 | subtitle: "- Jose Portilla", 161 | logo_path: "pierian-data-logo.png", 162 | certificate_link: 163 | "https://www.udemy.com/certificate/UC-a80d6e7c-e753-421d-bcee-5a7bc1769f28/", 164 | alt_name: "Pierian-Data", 165 | color_code: "#FEF6E6", 166 | }, 167 | { 168 | title: "Selenium Python", 169 | subtitle: "- Rahul Shetty", 170 | logo_path: "rahulshettyacademy-logo.png", 171 | certificate_link: 172 | "https://www.udemy.com/certificate/UC-e4b66abd-18c6-4bfa-9132-ab22d2bf7ef7/", 173 | alt_name: "RahulShettyAcademy", 174 | color_code: "#FDE9EA", 175 | }, 176 | { 177 | title: "Data Science", 178 | subtitle: "- IBM", 179 | logo_path: "ibm_logo.png", 180 | certificate_link: 181 | "https://coursera.org/share/893f2210f39f5a60d0463b19b469b808", 182 | alt_name: "IBM", 183 | color_code: "#E3F1FA", 184 | }, 185 | { 186 | title: "ML and DS", 187 | subtitle: "- Andrei Neagoie", 188 | logo_path: "zero-to-mastery.png", 189 | certificate_link: 190 | "https://www.udemy.com/certificate/UC-fd118b7d-7436-442c-a7f8-5077c432d596/", 191 | alt_name: "Zero To Mastery", 192 | color_code: "#FFFDDD", 193 | }, 194 | ], 195 | }; 196 | 197 | // Blogs Section 198 | 199 | const blogSection = { 200 | title: "Blogs", 201 | subtitle: 202 | "With Love for Developing cool stuff, I love to write and teach others what I have learnt.", 203 | 204 | blogs: [ 205 | { 206 | url: "https://bharatkammakatla.hashnode.dev/selenium-python-automation-framework-how-to-build", 207 | title: "How to build a Selenium Python Automation Framework", 208 | description: 209 | "Interested in building a test automation framework with selenium and python? If so, check out here !", 210 | }, 211 | { 212 | url: "https://bharatkammakatla.hashnode.dev/steps-to-build-a-selenium-java-framework-ckdsi73xg005ga9s1defhemfz", 213 | title: "Steps to build a Selenium Java Automation Framework", 214 | description: 215 | "Interested in building a test automation framework with selenium and java? If so, check out here !", 216 | }, 217 | { 218 | url: "https://bharatkammakatla.hashnode.dev/face-expression-recognition-using-keras-and-cnns-ckbevmufo0195dis1dfs10kt1", 219 | title: "Building a Machine Learning model to detect human emotions", 220 | description: 221 | "Are you interested to know how machines detect human emotions? If so, check out here !", 222 | }, 223 | { 224 | url: "https://medium.com/@bharatkammakatla/basic-end-to-end-scikit-learn-workflow-cd9e9a50491b?source=friends_link&sk=b828ac262c172abd7508efcbd00e5bd3", 225 | title: "Basic End-to-End Scikit-Learn workflow", 226 | description: 227 | "Do you want to know how a basic end-to-end scikit-learn workflow is implemented ? If so, check out here !", 228 | }, 229 | ], 230 | }; 231 | 232 | const contactInfo = { 233 | title: emoji("Contact Me ☎️"), 234 | subtitle: 235 | "Discuss a project or just want to say hi? My Inbox is open for all.", 236 | number: "+852 51606863", 237 | email_address: "bharatkammakatla@gmail.com", 238 | }; 239 | 240 | export { 241 | greeting, 242 | socialMediaLinks, 243 | skillsSection, 244 | workExperiences, 245 | openSource, 246 | blogSection, 247 | contactInfo, 248 | certifications, 249 | }; 250 | -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- 1 | // This optional code is used to register a service worker. 2 | // register() is not called by default. 3 | 4 | // This lets the app load faster on subsequent visits in production, and gives 5 | // it offline capabilities. However, it also means that developers (and users) 6 | // will only see deployed updates on subsequent visits to a page, after all the 7 | // existing tabs open on the page have been closed, since previously cached 8 | // resources are updated in the background. 9 | 10 | // To learn more about the benefits of this model and instructions on how to 11 | // opt-in, read https://bit.ly/CRA-PWA 12 | 13 | const isLocalhost = Boolean( 14 | window.location.hostname === 'localhost' || 15 | // [::1] is the IPv6 localhost address. 16 | window.location.hostname === '[::1]' || 17 | // 127.0.0.1/8 is considered localhost for IPv4. 18 | window.location.hostname.match( 19 | /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ 20 | ) 21 | ); 22 | 23 | export function register(config) { 24 | if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { 25 | // The URL constructor is available in all browsers that support SW. 26 | const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); 27 | if (publicUrl.origin !== window.location.origin) { 28 | // Our service worker won't work if PUBLIC_URL is on a different origin 29 | // from what our page is served on. This might happen if a CDN is used to 30 | // serve assets; see https://github.com/facebook/create-react-app/issues/2374 31 | return; 32 | } 33 | 34 | window.addEventListener('load', () => { 35 | const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; 36 | 37 | if (isLocalhost) { 38 | // This is running on localhost. Let's check if a service worker still exists or not. 39 | checkValidServiceWorker(swUrl, config); 40 | 41 | // Add some additional logging to localhost, pointing developers to the 42 | // service worker/PWA documentation. 43 | navigator.serviceWorker.ready.then(() => { 44 | console.log( 45 | 'This web app is being served cache-first by a service ' + 46 | 'worker. To learn more, visit https://bit.ly/CRA-PWA' 47 | ); 48 | }); 49 | } else { 50 | // Is not localhost. Just register service worker 51 | registerValidSW(swUrl, config); 52 | } 53 | }); 54 | } 55 | } 56 | 57 | function registerValidSW(swUrl, config) { 58 | navigator.serviceWorker 59 | .register(swUrl) 60 | .then(registration => { 61 | registration.onupdatefound = () => { 62 | const installingWorker = registration.installing; 63 | if (installingWorker == null) { 64 | return; 65 | } 66 | installingWorker.onstatechange = () => { 67 | if (installingWorker.state === 'installed') { 68 | if (navigator.serviceWorker.controller) { 69 | // At this point, the updated precached content has been fetched, 70 | // but the previous service worker will still serve the older 71 | // content until all client tabs are closed. 72 | console.log( 73 | 'New content is available and will be used when all ' + 74 | 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' 75 | ); 76 | 77 | // Execute callback 78 | if (config && config.onUpdate) { 79 | config.onUpdate(registration); 80 | } 81 | } else { 82 | // At this point, everything has been precached. 83 | // It's the perfect time to display a 84 | // "Content is cached for offline use." message. 85 | console.log('Content is cached for offline use.'); 86 | 87 | // Execute callback 88 | if (config && config.onSuccess) { 89 | config.onSuccess(registration); 90 | } 91 | } 92 | } 93 | }; 94 | }; 95 | }) 96 | .catch(error => { 97 | console.error('Error during service worker registration:', error); 98 | }); 99 | } 100 | 101 | function checkValidServiceWorker(swUrl, config) { 102 | // Check if the service worker can be found. If it can't reload the page. 103 | fetch(swUrl) 104 | .then(response => { 105 | // Ensure service worker exists, and that we really are getting a JS file. 106 | const contentType = response.headers.get('content-type'); 107 | if ( 108 | response.status === 404 || 109 | (contentType != null && contentType.indexOf('javascript') === -1) 110 | ) { 111 | // No service worker found. Probably a different app. Reload the page. 112 | navigator.serviceWorker.ready.then(registration => { 113 | registration.unregister().then(() => { 114 | window.location.reload(); 115 | }); 116 | }); 117 | } else { 118 | // Service worker found. Proceed as normal. 119 | registerValidSW(swUrl, config); 120 | } 121 | }) 122 | .catch(() => { 123 | console.log( 124 | 'No internet connection found. App is running in offline mode.' 125 | ); 126 | }); 127 | } 128 | 129 | export function unregister() { 130 | if ('serviceWorker' in navigator) { 131 | navigator.serviceWorker.ready.then(registration => { 132 | registration.unregister(); 133 | }); 134 | } 135 | } 136 | --------------------------------------------------------------------------------