├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── img │ ├── about-me.png │ ├── avatar-image-1.png │ ├── avatar-image-2.png │ ├── avatar-image.png │ ├── feather-pen-1.png │ ├── feather-pen-2.png │ ├── hero_img.png │ ├── logo.svg │ ├── placeholder-image-1.png │ ├── placeholder-image-2.png │ ├── placeholder-image.png │ ├── product-chain-1.png │ └── tag-1.png ├── index.html ├── logo.png └── robots.txt └── src ├── App.css ├── App.js ├── Pages └── Home │ ├── AboutMe.jsx │ ├── ContactMe.jsx │ ├── Footer.jsx │ ├── HeroSection.jsx │ ├── Homescreen │ └── index.jsx │ ├── MyPortfolio.jsx │ ├── MySkills.jsx │ ├── Navbar.jsx │ └── Testimonials.jsx ├── data └── index.json └── index.js /.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 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | node_modules 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in your browser. 13 | 14 | The page will reload when you make changes.\ 15 | You may also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can't go back!** 35 | 36 | If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. 39 | 40 | You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "portfolio", 3 | "version": "0.1.0", 4 | "private": true, 5 | "engines": { 6 | "node": ">=12.x" 7 | }, 8 | "dependencies": { 9 | "react": "^18.2.0", 10 | "react-dom": "^18.2.0", 11 | "react-router-dom": "^6.14.2", 12 | "react-scripts": "5.0.1", 13 | "react-scroll": "^1.8.9", 14 | "web-vitals": "^2.1.4" 15 | }, 16 | "scripts": { 17 | "start": "react-scripts start", 18 | "build": "react-scripts build" 19 | }, 20 | "browserslist": { 21 | "production": [ 22 | ">0.2%", 23 | "not dead", 24 | "not op_mini all" 25 | ], 26 | "development": [ 27 | "last 1 chrome version", 28 | "last 1 firefox version", 29 | "last 1 safari version" 30 | ] 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/favicon.ico -------------------------------------------------------------------------------- /public/img/about-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/about-me.png -------------------------------------------------------------------------------- /public/img/avatar-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/avatar-image-1.png -------------------------------------------------------------------------------- /public/img/avatar-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/avatar-image-2.png -------------------------------------------------------------------------------- /public/img/avatar-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/avatar-image.png -------------------------------------------------------------------------------- /public/img/feather-pen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/feather-pen-1.png -------------------------------------------------------------------------------- /public/img/feather-pen-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/feather-pen-2.png -------------------------------------------------------------------------------- /public/img/hero_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/hero_img.png -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /public/img/placeholder-image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/placeholder-image-1.png -------------------------------------------------------------------------------- /public/img/placeholder-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/placeholder-image-2.png -------------------------------------------------------------------------------- /public/img/placeholder-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/placeholder-image.png -------------------------------------------------------------------------------- /public/img/product-chain-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/product-chain-1.png -------------------------------------------------------------------------------- /public/img/tag-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/img/tag-1.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 11 | 12 | 16 | 17 | 18 | 19 | 20 | 21 | logoipsum' 22 | 23 | 24 | 25 |
26 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ade-mir/react-js-personal-portfolio/98417d43975928e47cd0fddb4612619a5a9c2bfb/public/logo.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | /* Global CSS */ 2 | 3 | body { 4 | margin: 0; 5 | font-family: "Roboto", sans-serif; 6 | -webkit-font-smoothing: "Roboto", sans-serif; 7 | -moz-osx-font-smoothing: "Roboto", sans-serif; 8 | font-style: normal; 9 | } 10 | h1, 11 | h2, 12 | h3, 13 | h4, 14 | h5, 15 | h6, 16 | p { 17 | margin: 0; 18 | } 19 | :root { 20 | --primary: #5e3bee; 21 | --heading-color: #282938; 22 | --bg-shade: #f5fcff; 23 | --github: #e62872; 24 | --darkblue: #1c1e53; 25 | --black: #000000; 26 | --white: #ffffff; 27 | } 28 | .btn { 29 | font-family: "Roboto"; 30 | display: inline-block; 31 | padding: 14px 32px; 32 | font-size: 16px; 33 | font-style: normal; 34 | font-weight: 400; 35 | line-height: 24px; 36 | cursor: pointer; 37 | text-align: center; 38 | text-decoration: none; 39 | border-radius: 4px; 40 | -webkit-border-radius: 5px; 41 | -moz-border-radius: 5px; 42 | -ms-border-radius: 5px; 43 | -o-border-radius: 5px; 44 | transition: background-color 0.5s; 45 | -webkit-transition: background-color 0.5s; 46 | -moz-transition: background-color 0.5s; 47 | -ms-transition: background-color 0.5s; 48 | -o-transition: background-color 0.5s; 49 | } 50 | .btn-outline-primary { 51 | color: var(--primary); 52 | background-color: var(--white); 53 | border: 1px solid var(--primary); 54 | } 55 | .btn-outline-primary:hover { 56 | color: var(--white); 57 | background-color: var(--primary); 58 | } 59 | .btn-primary { 60 | color: var(--white); 61 | background-color: var(--primary); 62 | border: 1px solid var(--primary); 63 | } 64 | .btn-primary:hover { 65 | color: var(--primary); 66 | background-color: var(--white); 67 | } 68 | .btn-github { 69 | color: var(--white); 70 | background-color: var(--github); 71 | border: var(--github); 72 | display: flex; 73 | flex-direction: row; 74 | justify-content: center; 75 | align-items: center; 76 | box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.95); 77 | gap: 16px; 78 | } 79 | .btn-github:hover { 80 | color: var(--github); 81 | background-color: var(--white); 82 | } 83 | /* Global CSS Ends */ 84 | /* Main Headings */ 85 | 86 | /* Heading 1 */ 87 | h1 { 88 | font-size: 56px; 89 | font-weight: 700; 90 | line-height: 67px; 91 | } 92 | /* Heading 2 */ 93 | h2 { 94 | font-size: 48px; 95 | font-weight: 700; 96 | line-height: 58px; 97 | } 98 | /* Heading 3 */ 99 | h2 { 100 | font-size: 24px; 101 | font-weight: 700; 102 | line-height: 34px; 103 | } 104 | 105 | /* Pragraphs text large medium small */ 106 | /* Body 1 */ 107 | .text-lg { 108 | color: var(--darkblue); 109 | font-size: 18px; 110 | font-style: normal; 111 | font-weight: 400; 112 | line-height: 27px; 113 | } 114 | /* Body 2 */ 115 | .text-md { 116 | color: var(--darkblue); 117 | font-size: 16px; 118 | font-style: normal; 119 | font-weight: 400; 120 | line-height: 24px; 121 | } 122 | /* Body 3 */ 123 | .text-sm { 124 | color: var(--black); 125 | font-size: 14px; 126 | font-style: normal; 127 | font-weight: 400; 128 | line-height: 21px; 129 | } 130 | 131 | /* Section Titles */ 132 | /* Skills & About Me */ 133 | .section--title { 134 | color: var(--heading-color); 135 | font-size: 21px; 136 | text-align: center; 137 | font-style: normal; 138 | font-weight: 600; 139 | line-height: 32px; 140 | display: flex; 141 | align-items: flex-start; 142 | } 143 | /* Portfolio, Testimonial & Contact Me */ 144 | .sub--title { 145 | color: var(--heading-color); 146 | font-size: 16px; 147 | font-weight: 600; 148 | line-height: 24px; 149 | } 150 | /* Section Titles Ends */ 151 | 152 | /* Navbar Style Start */ 153 | .navbar { 154 | display: flex; 155 | justify-content: space-between; 156 | align-items: center; 157 | padding: 15px 85.333px; 158 | background: var(--white); 159 | box-shadow: 0px 5.333px 80px 0 rgba(0, 0, 0, 0.1); 160 | position: fixed; 161 | top: 0; 162 | left: 0; 163 | right: 0; 164 | } 165 | .navbar--items > ul { 166 | list-style: none; 167 | display: flex; 168 | align-items: flex-start; 169 | gap: 42.667px; 170 | text-decoration: none; 171 | } 172 | .navbar--items ul > li > a { 173 | text-decoration: none; 174 | } 175 | /* Navbar Content */ 176 | .navbar--content { 177 | color: var(--darkblue); 178 | font-size: 16px; 179 | font-style: normal; 180 | font-weight: 400; 181 | line-height: 24px; 182 | cursor: pointer; 183 | } 184 | .navbar--active-content { 185 | color: var(--primary); 186 | } 187 | /* Navbar Styler Ends */ 188 | 189 | /* Hero Section Style */ 190 | .hero--section { 191 | display: grid; 192 | grid-template-columns: repeat(2, 1fr); 193 | padding: 133.333px 85.333px 133.333px; 194 | align-items: center; 195 | justify-content: space-between; 196 | gap: 32px; 197 | background-color: var(--bg-shade); 198 | } 199 | .hero--section--content-box { 200 | display: flex; 201 | flex-direction: column; 202 | align-items: flex-start; 203 | gap: 32px; 204 | } 205 | .hero--section--content { 206 | display: flex; 207 | flex-direction: column; 208 | align-items: flex-start; 209 | gap: 21.333px; 210 | } 211 | .hero--section--content--box > button { 212 | margin-top: 21.333px; 213 | } 214 | .hero--section--title { 215 | color: var(--heading-color); 216 | font-size: 74.667px; 217 | font-weight: 700; 218 | line-height: 90px; 219 | align-self: stretch; 220 | } 221 | .hero--section--title--color { 222 | color: var(--primary); 223 | } 224 | .hero--section-description { 225 | color: var(--darkblue); 226 | font-size: 24px; 227 | font-weight: 400; 228 | line-height: 36px; 229 | } 230 | .hero--section--img { 231 | display: flex; 232 | } 233 | .hero--section--img > img { 234 | width: 100%; 235 | height: 100%; 236 | } 237 | /* Hero Section Style Ends */ 238 | 239 | /* Skills Section Style */ 240 | .skills--section { 241 | display: flex; 242 | padding: 149.33px 85.33px; 243 | flex-direction: column; 244 | justify-content: center; 245 | align-items: flex-start; 246 | gap: 106.667px; 247 | } 248 | .skills--section--heading { 249 | color: var(--heading-color); 250 | font-size: 64px; 251 | font-weight: 700; 252 | line-height: 77px; 253 | } 254 | .skills--section--container { 255 | display: grid; 256 | justify-content: center; 257 | align-items: flex-start; 258 | gap: 42.6px; 259 | grid-template-columns: repeat(4, 1fr); 260 | } 261 | .skills--section--card { 262 | display: flex; 263 | padding: 32px; 264 | flex-direction: column; 265 | align-items: flex-start; 266 | gap: 32px; 267 | flex: 1 0 0; 268 | border-radius: 10.6px; 269 | background: var(--bg-shade); 270 | min-height: 250px; 271 | } 272 | .skills--section--card:hover { 273 | border-bottom: 4px solid var(--primary); 274 | } 275 | .skills--section--card:hover .skills--section--description { 276 | color: var(--darkblue); 277 | } 278 | .skills--section--img { 279 | display: flex; 280 | padding: 13.3px; 281 | justify-content: center; 282 | align-items: center; 283 | gap: 13.3px; 284 | border-radius: 10.6px; 285 | background: #fff; 286 | box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1); 287 | } 288 | .skills--section--card--content { 289 | display: flex; 290 | flex-direction: column; 291 | align-items: flex-start; 292 | gap: 32px; 293 | align-self: stretch; 294 | } 295 | .skills--section--title { 296 | color: var(--heading-color); 297 | font-size: 32px; 298 | font-weight: 700; 299 | line-height: 45px; 300 | } 301 | .skills--section--description { 302 | color: var(--black); 303 | font-size: 21.3px; 304 | font-style: normal; 305 | font-weight: 400; 306 | line-height: 32px; 307 | } 308 | /* Skills Style Ends */ 309 | 310 | /* About Us */ 311 | .about--section { 312 | display: grid; 313 | padding: 133.3px 85.3px; 314 | align-items: center; 315 | gap: 114.6px; 316 | grid-template-columns: repeat(2, 1fr); 317 | } 318 | .about--section--img > img { 319 | width: 100%; 320 | height: 100%; 321 | } 322 | /* About Us Ends */ 323 | 324 | /* My Portfolio Starts */ 325 | .portfolio--section { 326 | display: flex; 327 | padding: 112px 85px; 328 | flex-direction: column; 329 | align-items: flex-start; 330 | gap: 80px; 331 | } 332 | .portfolio--container-box { 333 | display: flex; 334 | justify-content: space-between; 335 | align-items: center; 336 | width: 100%; 337 | } 338 | .portfolio--container { 339 | display: flex; 340 | flex-direction: column; 341 | align-items: flex-start; 342 | gap: 21.3px; 343 | } 344 | .portfolio--section--container { 345 | display: flex; 346 | align-items: center; 347 | justify-content: center; 348 | gap: 42.6px; 349 | width: 100%; 350 | } 351 | .portfolio--section--img { 352 | border-radius: 8px; 353 | width: 100%; 354 | } 355 | .portfolio--section--img > img { 356 | width: 100%; 357 | } 358 | .portfolio--section--card { 359 | display: flex; 360 | flex-direction: column; 361 | align-items: flex-start; 362 | gap: 32px; 363 | flex: 1 0 0; 364 | background: #fff; 365 | box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.15); 366 | cursor: pointer; 367 | border-top-left-radius: 12px; 368 | border-top-right-radius: 12px; 369 | } 370 | .portfolio--section--card--content { 371 | display: flex; 372 | padding: 32px; 373 | flex-direction: column; 374 | align-items: flex-start; 375 | gap: 32px; 376 | align-self: stretch; 377 | } 378 | .portfolio--section--title { 379 | color: var(--heading-color); 380 | } 381 | .portfolio--link { 382 | text-decoration: none; 383 | display: flex; 384 | gap: 16px; 385 | border-bottom: 1.33px solid var(--primary); 386 | padding-bottom: 10.6px; 387 | font-weight: 600; 388 | } 389 | .portfolio--section--card:hover path { 390 | stroke: #006b6a; 391 | } 392 | /* Portfolio Ends */ 393 | 394 | /* Testimonial */ 395 | .testimonial--section { 396 | display: flex; 397 | padding: 112px 84.3px; 398 | flex-direction: column; 399 | align-items: flex-start; 400 | gap: 80px; 401 | background-color: var(--bg-shade); 402 | } 403 | .sections--heading { 404 | color: var(--heading-color); 405 | } 406 | .testimonial--section--card { 407 | display: flex; 408 | padding: 42.6px; 409 | flex-direction: column; 410 | align-items: flex-start; 411 | gap: 42.6px; 412 | flex: 1 0 0; 413 | border-radius: 8px; 414 | border: 1.33px solid #006b6a; 415 | } 416 | .testimonial--section--card--reviews { 417 | display: flex; 418 | align-items: flex-start; 419 | gap: 5.33px; 420 | } 421 | .testimonial--section--card--author--detail { 422 | display: flex; 423 | align-items: center; 424 | gap: 21.3px; 425 | } 426 | .testimonial--author--name { 427 | font-weight: 600; 428 | color: var(--heading-color); 429 | } 430 | .testimonial--author--designation { 431 | color: var(--darkblue); 432 | font-size: 16px; 433 | font-weight: 400; 434 | line-height: 150%; 435 | } 436 | /* Testimonial Ends */ 437 | .contact--section { 438 | display: flex; 439 | padding: 150px 85px; 440 | flex-direction: column; 441 | justify-content: center; 442 | align-items: center; 443 | text-align: center; 444 | gap: 64px; 445 | } 446 | .contact--form--container { 447 | display: grid; 448 | grid-template-columns: auto; 449 | grid-template-rows: repeat(5, auto); 450 | width: 40%; 451 | row-gap: 32px; 452 | } 453 | .container { 454 | display: grid; 455 | grid-template-columns: repeat(2, auto); 456 | column-gap: 32px; 457 | row-gap: 32px; 458 | } 459 | .contact--label { 460 | display: flex; 461 | flex-direction: column; 462 | align-items: flex-start; 463 | gap: 10.6px; 464 | flex: 1 0 0; 465 | width: 100%; 466 | } 467 | .contact--input { 468 | display: flex; 469 | font-family: "Roboto"; 470 | padding: 16px; 471 | align-items: center; 472 | align-self: stretch; 473 | border-radius: 8px; 474 | border: 1.333px solid var(--primary); 475 | background: var(--white); 476 | } 477 | select { 478 | -webkit-appearance: none; 479 | -moz-appearance: none; 480 | appearance: none; 481 | /* Some browsers will not display the caret when using calc, so we put the fallback first */ 482 | background: url('data:image/svg+xml;utf8,') 483 | white no-repeat 98.5% !important; /* !important used for overriding all other customisations */ 484 | background: url('data:image/svg+xml;utf8,') 485 | white no-repeat calc(100% - 20px); /* Better placement regardless of input width */ 486 | } 487 | /*For IE*/ 488 | select::-ms-expand { 489 | display: none; 490 | } 491 | .checkbox--label { 492 | display: flex; 493 | flex-direction: row; 494 | align-items: center; 495 | gap: 10.6px; 496 | flex: 1 0 0; 497 | justify-content: flex-start; 498 | } 499 | input[type="checkbox"] { 500 | width: 21px; 501 | height: 21px; 502 | border: 0.15em solid var(--heading-color); 503 | border-radius: 0.15em; 504 | transform: translatey(-0.075em); 505 | } 506 | /* Contact End */ 507 | 508 | /* Footer Start */ 509 | /* Footer Starts */ 510 | .footer--container { 511 | display: flex; 512 | padding: 106.667px 85.333px; 513 | flex-direction: column; 514 | align-items: flex-start; 515 | background: var(--bg-shade); 516 | align-items: center; 517 | align-self: stretch; 518 | } 519 | .footer--link--container { 520 | display: flex; 521 | justify-content: space-between; 522 | align-items: center; 523 | align-self: stretch; 524 | } 525 | .footer--items > ul { 526 | list-style: none; 527 | display: flex; 528 | align-items: flex-start; 529 | gap: 42.667px; 530 | text-decoration: none; 531 | } 532 | .footer--items ul > li > a { 533 | text-decoration: none; 534 | } 535 | .footer--social--icon > ul { 536 | list-style: none; 537 | display: flex; 538 | justify-content: flex-end; 539 | align-items: center; 540 | gap: 16px; 541 | flex-shrink: 0; 542 | text-decoration: none; 543 | } 544 | .divider { 545 | margin: 106px 0 42.67px; 546 | height: 1.333px; 547 | width: 100%; 548 | background: rgba(40, 41, 56, 0.55); 549 | } 550 | .footer--content--container { 551 | display: flex; 552 | justify-content: space-between; 553 | align-items: center; 554 | align-self: stretch; 555 | } 556 | .footer--content { 557 | color: var(--black); 558 | font-size: 18.667px; 559 | font-weight: 400; 560 | line-height: 28px; 561 | } 562 | 563 | /* Responsive Screens */ 564 | @media only screen and (max-width: 1800px) { 565 | .hero--section--title { 566 | font-size: 68px; 567 | line-height: 70px; 568 | } 569 | .skills--section--title { 570 | font-size: 28px; 571 | line-height: 40px; 572 | } 573 | } 574 | 575 | @media only screen and (max-width: 1600px) { 576 | .skills--section--heading { 577 | font-size: 54px; 578 | line-height: 70px; 579 | } 580 | .skills--section--container { 581 | gap: 16px; 582 | } 583 | .skills--section--card { 584 | gap: 28px; 585 | } 586 | .skills--section--card--content { 587 | gap: 20px; 588 | } 589 | .skills--section--title { 590 | font-size: 23px; 591 | line-height: 30px; 592 | } 593 | .skills--section--description { 594 | font-size: 17.333px; 595 | line-height: 27px; 596 | } 597 | } 598 | 599 | @media only screen and (max-width: 1200px) { 600 | .btn-outline-primary { 601 | display: none; 602 | } 603 | .hero--section { 604 | display: flex; 605 | flex-direction: column-reverse; 606 | padding-bottom: 70px; 607 | } 608 | .hero--section--title, 609 | .hero--section-description, 610 | .footer--content { 611 | text-align: center; 612 | } 613 | .skills--section--container, 614 | .about--section, 615 | .portfolio--section--container, 616 | .portfolio--container-box, 617 | .footer--link--container, 618 | .footer--items > ul, 619 | .footer--content--container { 620 | display: flex; 621 | flex-direction: column; 622 | } 623 | .skills--section, 624 | .portfolio--container, 625 | .hero--section--content, 626 | .hero--section--content--box { 627 | align-items: center; 628 | } 629 | .portfolio--container-box { 630 | gap: 30px; 631 | } 632 | .skills--section, 633 | .testimonial--section, 634 | .contact--section, 635 | .footer--container { 636 | gap: 20px; 637 | padding-top: 70px; 638 | padding-bottom: 70px; 639 | } 640 | .about--section { 641 | gap: 20px; 642 | padding-top: 0; 643 | padding-bottom: 0; 644 | } 645 | .testimonial--section--card { 646 | padding: 25px; 647 | } 648 | .hero--section--title, 649 | .skills--section--heading, 650 | .sections--heading { 651 | font-size: 35px; 652 | line-height: 40px; 653 | } 654 | .hero--section--content--box { 655 | gap: 10px; 656 | } 657 | .contact--form--container { 658 | width: 100%; 659 | } 660 | .container { 661 | display: flex; 662 | flex-direction: column; 663 | gap: 10px; 664 | } 665 | .footer--social--icon > ul, 666 | .footer--items > ul { 667 | padding: 0; 668 | align-items: center; 669 | } 670 | .divider { 671 | margin: 20px; 672 | } 673 | } 674 | 675 | /* Hamburger menu */ 676 | 677 | .nav__hamburger { 678 | display: none; 679 | width: 1.875rem; 680 | height: 1.313rem; 681 | flex-direction: column; 682 | justify-content: space-around; 683 | position: absolute; 684 | top: 25px; 685 | right: 25px; 686 | } 687 | 688 | .nav__hamburger__line { 689 | display: block; 690 | height: 0.188rem; 691 | width: 100%; 692 | background-color: #000000; 693 | border-radius: 0.625rem; 694 | transition: all ease-in-out 0.2s; 695 | } 696 | 697 | @media screen and (max-width: 1200px) { 698 | .nav__hamburger { 699 | display: flex; 700 | z-index: 200; 701 | } 702 | .navbar--items { 703 | display: flex; 704 | } 705 | .navbar--items { 706 | position: absolute; 707 | display: flex; 708 | align-items: center; 709 | justify-content: center; 710 | background-color: rgba(255, 255, 255); 711 | top: -20rem; 712 | left: 0; 713 | width: 100%; 714 | transition: all ease-in-out 0.4s; 715 | } 716 | .navbar--items ul { 717 | flex-direction: column; 718 | align-items: center; 719 | width: 100%; 720 | padding: 3rem 0 0.6rem; 721 | z-index: -100; 722 | } 723 | .navbar--items ul li { 724 | text-align: center; 725 | } 726 | .navbar--items ul li a { 727 | padding: 0.5rem; 728 | } 729 | .navbar--items { 730 | z-index: -1000; 731 | } 732 | .navbar--items.active { 733 | top: 30px; 734 | } 735 | .nav__hamburger.active :nth-child(1) { 736 | transform: rotate(45deg) translate(0.45rem, 0.1875rem); 737 | } 738 | 739 | .nav__hamburger.active :nth-child(2) { 740 | opacity: 0; 741 | } 742 | 743 | .nav__hamburger.active :nth-child(3) { 744 | transform: rotate(-45deg) translate(0.45rem, -0.1875rem); 745 | } 746 | } 747 | 748 | /* Responsive Screens Ends*/ 749 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import React from "react"; 3 | import { BrowserRouter as Router, Route, Routes } from "react-router-dom"; 4 | import Navbar from "./Pages/Home/Navbar"; 5 | import Home from "./Pages/Home/Homescreen"; 6 | 7 | function App() { 8 | return ( 9 |
10 | 11 |
12 | 13 | 14 | }> 15 | 404 Not Found
}> 16 | 17 |
18 | 19 | 20 | ); 21 | } 22 | 23 | export default App; 24 | -------------------------------------------------------------------------------- /src/Pages/Home/AboutMe.jsx: -------------------------------------------------------------------------------- 1 | export default function AboutMe() { 2 | return ( 3 |
4 |
5 | About Me 6 |
7 |
8 |
9 |

About

10 |

About Me

11 |

12 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Autem 13 | officiis sit debitis omnis harum sed veniam quasi dicta accusamus 14 | recusandae? Voluptatem, reprehenderit alias? Eligendi aperiam 15 | tempora numquam sint odit optio. 16 |

17 |

18 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Autem 19 | officiis sit debitis omnis harum sed veniam quasi dicta accusamus 20 | recusandae? 21 |

22 |
23 |
24 |
25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /src/Pages/Home/ContactMe.jsx: -------------------------------------------------------------------------------- 1 | export default function ContactMe() { 2 | return ( 3 |
4 |
5 |

Get In Touch

6 |

Contact Me

7 |

8 | Lorem ipsum dolor, sit amet consectetur adipisicing elit. In, odit. 9 |

10 |
11 |
12 |
13 | 23 | 33 | 43 | 53 |
54 | 63 |