├── .gitignore ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json ├── project-preview-2.png ├── project-preview-3.png ├── project-preview.png └── robots.txt └── src ├── App.js ├── assets ├── documents │ └── Sophia-Martinez.pdf └── images │ ├── download-icon.png │ ├── hamburger-black.jpeg │ ├── hamburger-white.png │ ├── icon-black.png │ ├── portfolio │ ├── Bankist.jpeg │ ├── Edgy.jpeg │ ├── Forkify.jpeg │ ├── RestCountries.jpeg │ └── urlShortener.png │ ├── project-external.png │ ├── project-source.png │ ├── scroll-btn.png │ ├── socials │ ├── codepen-pink.svg │ ├── github-pink.svg │ └── linkedin-pink.svg │ ├── x-ham-black.jpeg │ └── x-ham-white.png ├── components ├── Button.js ├── ScrollButton.js ├── footer │ ├── Footer.js │ └── Footer.sass ├── index.js └── navigation │ ├── Navigation.js │ ├── Navigation.sass │ ├── NavigationHamburger.js │ ├── NavigationLinks.js │ ├── NavigationLogo.js │ └── NavigationSocials.js ├── core-ui ├── Hover.sass ├── Styles.sass └── _base.sass ├── data ├── experienceData.js └── projectsData.js ├── helpers └── ScrollToTop.js ├── index.js ├── reportWebVitals.js ├── routes ├── about │ ├── About.js │ ├── About.sass │ ├── AboutMe.js │ ├── Certifications.js │ ├── DownloadResume.js │ ├── Education.js │ ├── Experience.js │ ├── Languages.js │ └── Stack.js ├── contact │ ├── Contact.js │ ├── Contact.sass │ └── ContactForm.js ├── index.js ├── landing │ ├── AboutPreview.js │ ├── ContactPreview.js │ ├── HeroPreview.js │ ├── Landing.js │ ├── Landing.sass │ ├── PortfolioPreview.js │ └── ProjectsPreview.js ├── not-found │ ├── NotFound.js │ └── NotFound.sass └── portfolio │ ├── Portfolio.js │ ├── Portfolio.sass │ ├── PortfolioDescription.js │ └── Projects.js └── setupTests.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 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Ekaterine (Catherine) Mitagvaria 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Project preview](https://github.com/catherineisonline/minimalistic-developer-portfolio/blob/main/public/project-preview.png?raw=true) 2 | ![Project preview](https://github.com/catherineisonline/minimalistic-developer-portfolio/blob/main/public/project-preview-3.png?raw=true) 3 | ![Project preview](https://github.com/catherineisonline/minimalistic-developer-portfolio/blob/main/public/project-preview-2.png?raw=true) 4 | 5 | # Personal Portfolio 6 | Portfolio : A glimpse into a web development expertise of a fictional character. Explore a selection of interactive and responsive websites, crafted with the latest technologies such as ReactJS, Vanilla JavaScript, RESTful API, CSS, SASS, SCSS, Tailwind, and HTML. Showcasing their skills and experience in designing and developing top-notch web solutions. Please not that the name and contact details of this person are fictional. 7 | 8 | 9 | ## Built With 10 | This project was built using these technologies: 11 | - React.js 12 | - HTML 13 | - Sass 14 | - Github pages 15 | 16 | ## 🛠 Installation and Setup Instructions 17 | 1. Installation: `npm install` 18 | 19 | 2. In the project directory, you can run: `npm start` 20 | 21 | Runs the app in the development mode.\ 22 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 23 | The page will reload if you make edits. 24 | 25 | ## Contribution 26 | I do not accept any direct contributions to this project like pull requests or implementation changes. However, if you have any suggestions or ideas feel free to message me or submit an idea in the discussions. Otherwise, you can fork this project and change it for your own purposes. 27 | 28 | ## License 29 | This project is released under the MIT LICENSE. You can find the specific terms and conditions outlined in the LICENSE file. This means you're free to utilize, modify, and distribute the project according to the terms of the MIT License. 30 | 31 | ### Build Your Portfolio: 32 | Feel free to incorporate this project into your personal portfolio! Showcase your skills and creativity by featuring your adaptations or implementations of this project. Just make sure to follow the guidelines of the MIT License while doing so. 33 | 34 | Happy coding! -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-portfolio", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@graphql-tools/schema": "9.0.1", 7 | "@testing-library/jest-dom": "^5.16.4", 8 | "@testing-library/react": "^12.1.4", 9 | "@testing-library/user-event": "^13.5.0", 10 | "react": "^18.0.0", 11 | "react-dom": "^18.0.0", 12 | "react-router-dom": "^6.3.0", 13 | "react-scripts": "^5.0.1", 14 | "sass": "^1.49.11", 15 | "svgo": "^2.8.0", 16 | "web-vitals": "^2.1.4", 17 | "webpack": "^5.97.1", 18 | "webpack-cli": "^6.0.1" 19 | }, 20 | "homepage": "/", 21 | "scripts": { 22 | "start": "react-scripts start", 23 | "build": "react-scripts build", 24 | "test": "react-scripts test", 25 | "eject": "react-scripts eject" 26 | }, 27 | "eslintConfig": { 28 | "extends": [ 29 | "react-app", 30 | "react-app/jest" 31 | ] 32 | }, 33 | "browserslist": { 34 | "production": [ 35 | ">0.2%", 36 | "not dead", 37 | "not op_mini all" 38 | ], 39 | "development": [ 40 | "last 1 chrome version", 41 | "last 1 firefox version", 42 | "last 1 safari version" 43 | ] 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | Sophia Martinez | Personal Portfolio 20 | 21 | 22 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/project-preview-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/public/project-preview-2.png -------------------------------------------------------------------------------- /public/project-preview-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/public/project-preview-3.png -------------------------------------------------------------------------------- /public/project-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/public/project-preview.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; 3 | import { Navigation } from "./components/index.js"; 4 | import { Landing, About, Portfolio, Contact, NotFound } from "./routes/index.js"; 5 | import "./core-ui/Styles.sass"; 6 | import './core-ui/Hover.sass'; 7 | 8 | const App = () => { 9 | return ( 10 | 11 | 12 | 13 | } /> 14 | } /> 15 | } /> 16 | } /> 17 | } /> 18 | 19 | 20 | ); 21 | }; 22 | 23 | export default App; -------------------------------------------------------------------------------- /src/assets/documents/Sophia-Martinez.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/documents/Sophia-Martinez.pdf -------------------------------------------------------------------------------- /src/assets/images/download-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/download-icon.png -------------------------------------------------------------------------------- /src/assets/images/hamburger-black.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/hamburger-black.jpeg -------------------------------------------------------------------------------- /src/assets/images/hamburger-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/hamburger-white.png -------------------------------------------------------------------------------- /src/assets/images/icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/icon-black.png -------------------------------------------------------------------------------- /src/assets/images/portfolio/Bankist.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/portfolio/Bankist.jpeg -------------------------------------------------------------------------------- /src/assets/images/portfolio/Edgy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/portfolio/Edgy.jpeg -------------------------------------------------------------------------------- /src/assets/images/portfolio/Forkify.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/portfolio/Forkify.jpeg -------------------------------------------------------------------------------- /src/assets/images/portfolio/RestCountries.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/portfolio/RestCountries.jpeg -------------------------------------------------------------------------------- /src/assets/images/portfolio/urlShortener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/portfolio/urlShortener.png -------------------------------------------------------------------------------- /src/assets/images/project-external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/project-external.png -------------------------------------------------------------------------------- /src/assets/images/project-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/project-source.png -------------------------------------------------------------------------------- /src/assets/images/scroll-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/scroll-btn.png -------------------------------------------------------------------------------- /src/assets/images/socials/codepen-pink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/socials/github-pink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/socials/linkedin-pink.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/x-ham-black.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/x-ham-black.jpeg -------------------------------------------------------------------------------- /src/assets/images/x-ham-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catherineisonline/minimalistic-developer-portfolio/1200ad1955bf15b1ccbbf0cd3355958cc1f48b85/src/assets/images/x-ham-white.png -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- 1 | import { React } from 'react'; 2 | 3 | const Button = (props) => { 4 | return ; 5 | }; 6 | 7 | export default Button; 8 | -------------------------------------------------------------------------------- /src/components/ScrollButton.js: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useState } from "react"; 2 | import Button from "./Button"; 3 | import ScrollToTop from "../helpers/ScrollToTop"; 4 | 5 | const ScrollButton = () => { 6 | const [visible, setVisible] = useState(false); 7 | 8 | useEffect(() => { 9 | const toggleVisible = () => { 10 | const scrolled = document.documentElement.scrollTop; 11 | if (scrolled > 300) { 12 | setVisible(true); 13 | } else if (scrolled <= 300) { 14 | setVisible(false); 15 | } 16 | }; 17 | window.addEventListener("scroll", toggleVisible); 18 | return (() => window.removeEventListener("scroll", toggleVisible)) 19 | }, []); 20 | 21 | return ( 22 | 56 | : 57 | 58 |
59 | 66 |

67 | 68 |
69 |
70 | 72 |

73 | 74 |
75 |
76 |