├── src ├── assets │ ├── contact.svg │ ├── particleConfig.json │ ├── cloudBg.png │ ├── cloudDark.png │ └── webdev.svg ├── components │ ├── ParticleContainer.jsx │ ├── LoadingScreen.jsx │ ├── Card.jsx │ └── Navbar.jsx ├── setupTests.js ├── reportWebVitals.js ├── index.js ├── themeProvider.jsx ├── index.css ├── App.js ├── views │ ├── Projects.jsx │ ├── Services.jsx │ ├── About.jsx │ ├── Home.jsx │ └── Contact.jsx └── constants.js ├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── index.html ├── .gitignore ├── package.json └── README.md /src/assets/contact.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/particleConfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aakashsh1999/portfolio_website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aakashsh1999/portfolio_website/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aakashsh1999/portfolio_website/HEAD/public/logo512.png -------------------------------------------------------------------------------- /src/assets/cloudBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aakashsh1999/portfolio_website/HEAD/src/assets/cloudBg.png -------------------------------------------------------------------------------- /src/assets/cloudDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aakashsh1999/portfolio_website/HEAD/src/assets/cloudDark.png -------------------------------------------------------------------------------- /src/components/ParticleContainer.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const ParticleContainer = () => { 4 | 5 | return ( 6 |
ParticleContainer
7 | ) 8 | } 9 | 10 | export default ParticleContainer -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/components/LoadingScreen.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | const LoadingScreen = () => { 4 | return ( 5 |
6 |
7 | 11 |
12 |
13 | ); 14 | }; 15 | 16 | export default LoadingScreen; 17 | -------------------------------------------------------------------------------- /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 reportWebVitals from './reportWebVitals'; 6 | 7 | ReactDOM.render( 8 | 9 | 10 | , 11 | document.getElementById('root') 12 | ); 13 | 14 | // If you want to start measuring performance in your app, pass a function 15 | // to log results (for example: reportWebVitals(console.log)) 16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 17 | reportWebVitals(); 18 | -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /src/themeProvider.jsx: -------------------------------------------------------------------------------- 1 | import React, { createContext, useReducer } from "react"; 2 | 3 | export const ThemeContext = createContext(); 4 | const initialState = { darkMode: true }; 5 | 6 | const themeReducer = (state, action) => { 7 | switch (action.type) { 8 | case "LIGHTMODE": 9 | return { darkMode: false }; 10 | case "DARKMODE": 11 | return { darkMode: true }; 12 | default: 13 | return state; 14 | } 15 | }; 16 | 17 | export function ThemeProvider(props) { 18 | const [state, dispatch] = useReducer(themeReducer, initialState); 19 | 20 | return ( 21 | 24 | {props.children} 25 | 26 | ); 27 | } 28 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", 4 | "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | scrollbar-width: 2px !important; 9 | } 10 | 11 | code { 12 | font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", 13 | monospace; 14 | } 15 | 16 | .switch { 17 | width: 160px; 18 | height: 100px; 19 | background-color: rgba(255, 255, 255, 0.4); 20 | display: flex; 21 | justify-content: flex-start; 22 | border-radius: 50px; 23 | padding: 10px; 24 | cursor: pointer; 25 | } 26 | 27 | .switch[data-isOn="true"] { 28 | justify-content: flex-end; 29 | } 30 | 31 | .handle { 32 | width: 80px; 33 | height: 80px; 34 | background-color: white; 35 | border-radius: 40px; 36 | } 37 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import { useState, useEffect } from "react"; 2 | import Contact from "./views/Contact"; 3 | import Navbar from "./components/Navbar"; 4 | import About from "./views/About"; 5 | import Home from './views/Home' 6 | import Services from "./views/Services"; 7 | import Projects from "./views/Projects"; 8 | import LoadingScreen from "./components/LoadingScreen"; 9 | import { ThemeProvider } from "./themeProvider"; 10 | 11 | function App() { 12 | const [loading, setLoading] = useState(true) 13 | useEffect(() => { 14 | setTimeout(() => setLoading(false), 1000) 15 | }, []) 16 | 17 | return ( 18 | 19 | <> 20 | 21 | {!loading ? ( 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 | ) : ( 32 | 33 | )} 34 | 35 |
36 | 37 | ); 38 | } 39 | 40 | export default App; 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "aakash_portfolio", 3 | "homepage": "https://aakashsh1999.github.io/", 4 | "version": "0.1.0", 5 | "private": true, 6 | "dependencies": { 7 | "@testing-library/jest-dom": "^5.16.2", 8 | "@testing-library/react": "^12.1.4", 9 | "@testing-library/user-event": "^13.5.0", 10 | "framer-motion": "^6.2.8", 11 | "hamburger-react": "^2.4.1", 12 | "react": "^17.0.2", 13 | "react-dom": "^17.0.2", 14 | "react-scripts": "5.0.0", 15 | "react-scroll": "^1.8.6", 16 | "react-tsparticles": "^1.42.4", 17 | "react-typical": "^0.1.3", 18 | "web-vitals": "^2.1.4" 19 | }, 20 | "scripts": { 21 | "start": "react-scripts start", 22 | "build": "react-scripts build", 23 | "test": "react-scripts test", 24 | "eject": "react-scripts eject" 25 | }, 26 | "eslintConfig": { 27 | "extends": [ 28 | "react-app", 29 | "react-app/jest" 30 | ] 31 | }, 32 | "browserslist": { 33 | "production": [ 34 | ">0.2%", 35 | "not dead", 36 | "not op_mini all" 37 | ], 38 | "development": [ 39 | "last 1 chrome version", 40 | "last 1 firefox version", 41 | "last 1 safari version" 42 | ] 43 | }, 44 | "devDependencies": { 45 | "gh-pages": "^3.2.3" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | 27 | Aakash Sharma 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /src/views/Projects.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import Card from "../components/Card"; 3 | import { ThemeContext } from "../themeProvider"; 4 | 5 | const Projects = () => { 6 | const theme = useContext(ThemeContext); 7 | const darkMode = theme.state.darkMode; 8 | 9 | return ( 10 |
14 |
15 |

16 | Projects 17 |

18 |

19 | What I Built 20 |

21 |
22 | 23 | 24 | 25 | 26 | 27 |
28 | 32 | Show More 33 | 39 | 44 | 45 | 46 |
47 |
48 | ); 49 | }; 50 | 51 | export default Projects; 52 | -------------------------------------------------------------------------------- /src/components/Card.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { motion } from "framer-motion"; 3 | 4 | const Card = () => { 5 | return ( 6 | 15 | 16 | 21 | 22 |
23 | 24 |
25 | Noteworthy technology acquisitions 2021 26 |
27 |
28 |

29 | Here are the biggest enterprise technology acquisitions of 2021 so 30 | far, in reverse chronological order. 31 |

32 | 36 | Read more 37 | 43 | 48 | 49 | 50 |
51 |
52 | ); 53 | }; 54 | 55 | export default Card; 56 | -------------------------------------------------------------------------------- /src/views/Services.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import { serviceData } from "../constants"; 3 | import { ThemeContext } from "../themeProvider"; 4 | import { motion } from "framer-motion"; 5 | 6 | const Services = () => { 7 | const theme = useContext(ThemeContext); 8 | return ( 9 |
14 | > 15 |
19 |

26 | Services 27 |

28 |
29 |

30 | What I Provide 31 |

32 |
33 | {serviceData.map((el) => ( 34 | 47 | 48 |

{el.name}

49 |

{el.desc}

50 |
51 | ))} 52 |
53 |
54 |
55 |
56 | ); 57 | }; 58 | 59 | export default Services; 60 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/views/About.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import { techStack } from "../constants"; 3 | import { ThemeContext } from "../themeProvider"; 4 | import { motion } from "framer-motion"; 5 | 6 | const About = () => { 7 | const theme = useContext(ThemeContext); 8 | const darkMode = theme.state.darkMode; 9 | return ( 10 |
11 |
12 |

19 | About Me 20 |

21 |
22 | 23 |

24 | A bit about me 25 |

26 |

33 | I'm a self-taught web developer and Mobile App Developer with 34 | experience in designing new features from ideation to production, 35 | implementation of wireframes and design flows into high 36 | performance software applications. I take into consideration the 37 | user experience while writing reusable and efficient code. I 38 | passionately combine good design, technology, and innovation in 39 | all my projects, which I like to accompany from the first idea to 40 | release.Currently, I'm focused on the backend development. 41 |

42 |
43 | 45 |

46 | Technologies and Tools 47 |

48 |

55 | Using a combination of cutting-edge technologies and reliable 56 | open-source software I build user-focused, performant apps and 57 | websites for smartphones, tablets, and desktops. 58 |

59 |
60 | 61 | {techStack.map((el, index) => ( 62 | 77 | 78 |

{el.name}

79 |
80 | ))} 81 |
82 |
83 |
84 |
85 | ); 86 | }; 87 | 88 | export default About; 89 | -------------------------------------------------------------------------------- /src/views/Home.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import heroBg from "../assets/webdev.svg"; 3 | import Typical from "react-typical"; 4 | import { contactLinks } from "../constants"; 5 | import { ThemeContext } from "../themeProvider"; 6 | import { motion } from "framer-motion"; 7 | import { Link } from "react-scroll"; 8 | import cloud from "../assets/cloudBg.png"; 9 | import cloudDark from "../assets/cloudDark.png"; 10 | 11 | const Home = () => { 12 | const theme = useContext(ThemeContext); 13 | const darkMode = theme.state.darkMode; 14 | return ( 15 | <> 16 |
23 |
27 |
28 |

29 | 32 | Hi, I am Aakash 33 | 34 | 35 | 46 | 47 |

48 |

55 | I am a Front-End / Full-Stack Developer. I am currently working at 56 | CloudStok Technologies as a Front-End Developer 57 |

58 |
59 | {contactLinks.map((el) => ( 60 | 64 | 65 | {/*

{el.name}

*/} 66 |
67 | ))} 68 |
69 |
70 |
71 | 72 | Resume 73 | 74 |
75 |
76 |
77 | 94 |
95 |
96 | 97 | ); 98 | }; 99 | 100 | export default Home; 101 | -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- 1 | export const techStack = [ 2 | 3 | { name: "C Language", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/c/c-plain.svg" }, 4 | 5 | { name: "TypeScript", link: "https://raw.githubusercontent.com/devicons/devicon/master/icons/typescript/typescript-original.svg" }, 6 | { name: "Express", link: "https://raw.githubusercontent.com/devicons/devicon/master/icons/express/express-original-wordmark.svg" }, 7 | 8 | { name: "NodeJS", link: "https://raw.githubusercontent.com/devicons/devicon/master/icons/nodejs/nodejs-original-wordmark.svg" }, 9 | { name: "Postman", link: "https://www.vectorlogo.zone/logos/getpostman/getpostman-icon.svg" }, 10 | 11 | { name: "Dart", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/dart/dart-original.svg" }, 12 | { name: "Flutter", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/flutter/flutter-plain.svg" }, 13 | { name: "React Native", link: "https://pagepro.co/blog/wp-content/uploads/2020/03/react-native-logo-884x1024.png" }, 14 | { name: "HTML", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg" }, 15 | { name: "CSS", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-plain.svg" }, 16 | { name: "Bootstrap", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/bootstrap/bootstrap-plain.svg" }, 17 | { name: "Redux", link: "https://raw.githubusercontent.com/devicons/devicon/master/icons/redux/redux-original.svg" }, 18 | { name: "Sass", link: "https://raw.githubusercontent.com/devicons/devicon/master/icons/sass/sass-original.svg" }, 19 | 20 | { name: "Javascript", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" }, 21 | { name: "Tailwind CSS", link: "https://www.vectorlogo.zone/logos/tailwindcss/tailwindcss-icon.svg" }, 22 | { name: "React", link: "https://raw.githubusercontent.com/devicons/devicon/master/icons/react/react-original-wordmark.svg" }, 23 | { name: "MySQl", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mysql/mysql-plain.svg" }, 24 | { name: "Mongo DB", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/mongodb/mongodb-plain.svg" }, 25 | { name: "Heroku", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/heroku/heroku-plain.svg" }, 26 | // { name: "Azure", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/azure/azure-plain.svg" }, 27 | { name: "Git", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/git/git-plain.svg" }, 28 | // { name: "Docker", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/docker/docker-plain.svg" }, 29 | { name: "Firebase", link: "https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg" }, 30 | 31 | // { name: "Bash", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/bash/bash-original.svg" }, 32 | // { name: "Vim", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vim/vim-original.svg" }, 33 | 34 | // { name: "VS Code", link: "https://cdn.jsdelivr.net/gh/devicons/devicon/icons/vscode/vscode-original.svg" }, 35 | // {name: "", link: "https://repository-images.githubusercontent.com/59065830/b62be480-45d2-11ea-9989-803db0f9c44d"} 36 | ] 37 | 38 | 39 | export const contactLinks = [{ name: 'Stack Overflow', url: 'https://img.icons8.com/external-tal-revivo-color-tal-revivo/40/000000/external-stack-overflow-is-a-question-and-answer-site-for-professional-logo-color-tal-revivo.png', link: 'https://stackoverflow.com/users/11788531/aakash-sharma' }, 40 | { name: 'Instagram', url: 'https://img.icons8.com/doodle/40/000000/instagram-new--v2.png', link: 'https://www.instagram.com/aakashsh1999/' }, 41 | { name: 'Github', url: 'https://img.icons8.com/doodle/40/000000/github--v1.png', link :'https://github.com/aakashsh1999'}, 42 | { name: 'LinkedIn', url: 'https://img.icons8.com/doodle/40/000000/linkedin--v2.png', link: 'https://www.linkedin.com/in/aakashsh1999/'} 43 | ] 44 | 45 | 46 | 47 | export const serviceData = [ 48 | { 49 | name: 'Web Application Development', 50 | desc: 'Web design encompasses many different skills and disciplines in the production and maintenance of websites. The different areas of web design include web graphic design user interface design authoring, including standardised code and proprietary software user experience design and search engine', 51 | img: "https://img.icons8.com/external-kiranshastry-lineal-color-kiranshastry/64/000000/external-web-development-coding-kiranshastry-lineal-color-kiranshastry.png" 52 | }, 53 | { 54 | name: 'Mobile Application Development', 55 | desc: `We provide a range of mobile application development services 56 | including custom mobile development on Android platforms, building 57 | cross-platform apps, designing user experience and integrating 58 | novel mobile interfaces such as chat and voice`, 59 | img: "https://img.icons8.com/external-justicon-lineal-color-justicon/64/000000/external-app-development-responsive-web-design-justicon-lineal-color-justicon.png" 60 | }, 61 | 62 | { 63 | name: 'Backend Development', 64 | desc: `Graphic design is a craft where professionals create visual 65 | content to communicate messages. By applying visual hierarchy and 66 | page layout techniques, designers use typography and pictures to 67 | meet users' specific needs and focus on the logic of displaying 68 | elements in interactive designs, to optimize the user experience.`, 69 | img: "https://img.icons8.com/external-flaticons-flat-flat-icons/64/000000/external-backend-no-code-flaticons-flat-flat-icons.png" 70 | }, 71 | 72 | 73 | ] -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext, useState } from "react"; 2 | import { Link } from "react-scroll"; 3 | import { ThemeContext } from "../themeProvider"; 4 | import { motion, AnimatePresence } from "framer-motion"; 5 | import Hamburger from "hamburger-react"; 6 | 7 | const Navbar = () => { 8 | const theme = useContext(ThemeContext); 9 | const [toggle, setToggle] = useState(false); 10 | const darkMode = theme.state.darkMode; 11 | const links = [ 12 | { 13 | name: "Home", 14 | route: "/", 15 | }, 16 | { 17 | name: "About", 18 | route: "about", 19 | }, 20 | { 21 | name: "Services", 22 | route: "services", 23 | }, 24 | { 25 | name: "Projects", 26 | route: "projects", 27 | }, 28 | { 29 | name: "Contact", 30 | route: "contact", 31 | }, 32 | ]; 33 | 34 | function toggleTheme() { 35 | if (darkMode === true) { 36 | theme.dispatch({ type: "LIGHTMODE" }); 37 | } else { 38 | theme.dispatch({ type: "DARKMODE" }); 39 | } 40 | } 41 | 42 | return ( 43 | <> 44 | 134 | 135 | {toggle && ( 136 | 146 | 164 | 165 | )} 166 | 167 | 168 | ); 169 | }; 170 | 171 | export default Navbar; 172 | -------------------------------------------------------------------------------- /src/views/Contact.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import { contactLinks } from "../constants"; 3 | import { ThemeContext } from "../themeProvider"; 4 | 5 | const Contact = () => { 6 | const theme = useContext(ThemeContext); 7 | const darkMode = theme.state.darkMode; 8 | return ( 9 |
17 |
18 |

19 | Contact 20 |

21 |
22 |

23 | Connect with me 24 |

25 |

26 | If you want to know more about me or my work, or if you would just 27 |
28 | like to say hello, send me a message. I'd love to hear from you. 29 |

30 |
31 |
32 |
33 |
34 |
35 | 45 | 52 |
53 |
54 | 64 | 71 |
72 |
73 | 83 |