├── src ├── react-app-env.d.ts ├── pages │ ├── Home │ │ ├── Home.scss │ │ └── Home.tsx │ ├── Contact │ │ ├── Contact.scss │ │ └── Contact.tsx │ ├── About │ │ ├── About.scss │ │ └── About.tsx │ ├── Banner │ │ ├── Banner.tsx │ │ └── Banner.scss │ ├── TechnologiesThatIKnow │ │ ├── TechnologiesThatIKnow.scss │ │ ├── images.ts │ │ └── TechnologiesThatIKnow.tsx │ └── Projects │ │ ├── Projects.scss │ │ └── Projects.tsx ├── assets │ ├── images │ │ ├── api.png │ │ ├── vue.png │ │ ├── mysql.png │ │ ├── mongoDB.png │ │ ├── card-github.png │ │ ├── tailwindcss.png │ │ ├── huddle-github.png │ │ ├── jasmine-karma.png │ │ ├── social-github.png │ │ ├── styled-components.png │ │ ├── html5.svg │ │ ├── css3.svg │ │ ├── typescript.svg │ │ ├── bootstrap.svg │ │ ├── git.svg │ │ ├── javascript.svg │ │ ├── angularmaterial.svg │ │ ├── angular.svg │ │ ├── redux.svg │ │ ├── chakraui.svg │ │ ├── sass.svg │ │ ├── nestJs.svg │ │ ├── react.svg │ │ ├── mongoDB.svg │ │ └── nodeJs.svg │ └── styles │ │ └── reset.scss ├── components │ ├── Subtitle │ │ ├── Subtitle.scss │ │ └── Subtitle.tsx │ └── Header │ │ ├── Header.tsx │ │ └── Header.scss ├── setupTests.ts ├── index.tsx └── index.scss ├── public ├── robots.txt ├── favicon.ico ├── logo192.png ├── logo512.png ├── manifest.json └── index.html ├── .gitignore ├── tsconfig.json ├── package.json └── README.md /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/pages/Home/Home.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 1150px; 3 | } 4 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/public/logo512.png -------------------------------------------------------------------------------- /src/assets/images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/api.png -------------------------------------------------------------------------------- /src/assets/images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/vue.png -------------------------------------------------------------------------------- /src/assets/images/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/mysql.png -------------------------------------------------------------------------------- /src/assets/images/mongoDB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/mongoDB.png -------------------------------------------------------------------------------- /src/assets/images/card-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/card-github.png -------------------------------------------------------------------------------- /src/assets/images/tailwindcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/tailwindcss.png -------------------------------------------------------------------------------- /src/assets/images/huddle-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/huddle-github.png -------------------------------------------------------------------------------- /src/assets/images/jasmine-karma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/jasmine-karma.png -------------------------------------------------------------------------------- /src/assets/images/social-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/social-github.png -------------------------------------------------------------------------------- /src/assets/images/styled-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vicckm/victoria-marques-website/main/src/assets/images/styled-components.png -------------------------------------------------------------------------------- /src/pages/Contact/Contact.scss: -------------------------------------------------------------------------------- 1 | .section-contact { 2 | padding: 0 100px; 3 | margin: 100px 0; 4 | @media (min-width: 320px) and (max-width: 876px) { 5 | padding: 0 30px; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/components/Subtitle/Subtitle.scss: -------------------------------------------------------------------------------- 1 | .subtitle { 2 | font-size: 2rem; 3 | 4 | &::after { 5 | content: ""; 6 | display: block; 7 | width: 100px; 8 | height: 5px; 9 | background: #F18F01; 10 | margin: 10px 0; 11 | } 12 | } -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /src/pages/About/About.scss: -------------------------------------------------------------------------------- 1 | .section-about { 2 | padding: 0 100px; 3 | margin: 100px 0; 4 | @media (min-width: 320px) and (max-width: 876px) { 5 | padding: 0 30px; 6 | } 7 | 8 | & > p { 9 | font-size: 1.25rem; 10 | max-width: 1100px; 11 | line-height: 1.5; 12 | } 13 | } -------------------------------------------------------------------------------- /src/components/Subtitle/Subtitle.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import './Subtitle.scss'; 3 | 4 | type SubtitleProps = { 5 | title: string; 6 | } 7 | 8 | export default function Subtitle({ title }: SubtitleProps) { 9 | return ( 10 |

{ title }

11 | ) 12 | } 13 | -------------------------------------------------------------------------------- /src/pages/Contact/Contact.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Subtitle from "../../components/Subtitle/Subtitle"; 3 | import "./Contact.scss"; 4 | 5 | export default function Contact() { 6 | return ( 7 |
8 | 9 |
10 | ); 11 | } 12 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import ReactDOM from "react-dom/client"; 3 | import "./index.scss"; 4 | import Home from "./pages/Home/Home"; 5 | 6 | const root = ReactDOM.createRoot( 7 | document.getElementById("root") as HTMLElement 8 | ); 9 | root.render( 10 | 11 | 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /.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/assets/images/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- 1 | @import './assets/styles/reset.scss'; 2 | 3 | body { 4 | margin: 0; 5 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 6 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 7 | sans-serif; 8 | padding: 0; 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | } 12 | 13 | code { 14 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 15 | monospace; 16 | } 17 | -------------------------------------------------------------------------------- /src/assets/images/typescript.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "esModuleInterop": true, 12 | "allowSyntheticDefaultImports": true, 13 | "strict": true, 14 | "forceConsistentCasingInFileNames": true, 15 | "noFallthroughCasesInSwitch": true, 16 | "module": "esnext", 17 | "moduleResolution": "node", 18 | "resolveJsonModule": true, 19 | "isolatedModules": true, 20 | "noEmit": true, 21 | "jsx": "react-jsx" 22 | }, 23 | "include": [ 24 | "src" 25 | ] 26 | } 27 | -------------------------------------------------------------------------------- /src/assets/images/bootstrap.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/git.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/About/About.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Subtitle from "../../components/Subtitle/Subtitle"; 3 | import "./About.scss"; 4 | 5 | export default function About() { 6 | return ( 7 |
8 | 9 | 10 |

11 | Me chamo Victoria, sou técnica em informática, estudante de Sistemas de 12 | Informação pela Faculdade Descomplica e também desenvolvedora frontend. 13 | Comecei a gostar de computadores quando tinha 7 anos de idade e esse foi 14 | um dos fatores para atiçar minha curiosidade pelo mundo da tecnologia.{" "} 15 |

16 |
17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /src/pages/Home/Home.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Header from "../../components/Header/Header"; 3 | import About from "../About/About"; 4 | import Banner from "../Banner/Banner"; 5 | import Contact from "../Contact/Contact"; 6 | import Projects from "../Projects/Projects"; 7 | import TechnologiesThatIKnow from "../TechnologiesThatIKnow/TechnologiesThatIKnow"; 8 | import "./Home.scss"; 9 | 10 | function Home() { 11 | return ( 12 | <> 13 |
14 |
15 | 16 | 17 | 18 |
19 | 20 | {/* */} 21 | 22 | ); 23 | } 24 | 25 | export default Home; 26 | -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import AnchorLink from "react-anchor-link-smooth-scroll"; 3 | import "./Header.scss"; 4 | 5 | export default function Header() { 6 | return ( 7 |
8 |

Victoria Marques

9 | 10 | 24 |
25 | ); 26 | } 27 | -------------------------------------------------------------------------------- /src/assets/images/javascript.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Banner/Banner.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./Banner.scss"; 3 | import Typewriter from "typewriter-effect"; 4 | 5 | export default function Banner() { 6 | return ( 7 |
8 |

Olá,

9 |

me chamo Victoria Marques.

10 | 23 |
24 | ); 25 | } 26 | -------------------------------------------------------------------------------- /src/pages/TechnologiesThatIKnow/TechnologiesThatIKnow.scss: -------------------------------------------------------------------------------- 1 | .tech-section { 2 | padding: 0 100px; 3 | margin: 100px 0; 4 | @media (min-width: 320px) and (max-width: 876px) { 5 | padding: 0 30px; 6 | } 7 | 8 | ul { 9 | display: flex; 10 | flex-wrap: wrap; 11 | gap: 20px; 12 | margin-top: 50px; 13 | li { 14 | display: flex; 15 | align-items: center; 16 | justify-content: center; 17 | background-color: rgba(241, 143, 1, 0.6); 18 | border-radius: 8px; 19 | padding: 8px; 20 | 21 | img { 22 | height: 100px; 23 | width: 90%; 24 | 25 | .big-image { 26 | @media (min-width: 320px) and (max-width: 876px) { 27 | &:last-child { 28 | width: 50%; 29 | height: 100%; 30 | } 31 | } 32 | } 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/components/Header/Header.scss: -------------------------------------------------------------------------------- 1 | .header { 2 | display: flex; 3 | justify-content: space-between; 4 | align-items: center; 5 | padding: 0 100px; 6 | margin: 30px 0; 7 | font-weight: 500; 8 | 9 | @media (min-width: 320px) and (max-width: 876px) { 10 | padding: 0 30px; 11 | } 12 | 13 | h1 { 14 | font-size: 1.2rem; 15 | color: #f18f01; 16 | 17 | @media (min-width: 320px) and (max-width: 876px) { 18 | text-align: center; 19 | } 20 | } 21 | 22 | nav { 23 | ul { 24 | list-style-type: none; 25 | display: flex; 26 | 27 | li { 28 | padding: 0 30px; 29 | 30 | a { 31 | text-decoration: none; 32 | color: #000; 33 | 34 | &:hover { 35 | color: #f18f01; 36 | } 37 | } 38 | 39 | @media (max-width: 576px) { 40 | padding: 0 10px; 41 | } 42 | } 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/pages/Banner/Banner.scss: -------------------------------------------------------------------------------- 1 | .section-banner { 2 | padding: 0 100px; 3 | margin: 100px 0; 4 | @media (min-width: 320px) and (max-width: 876px) { 5 | padding: 0 30px; 6 | margin: 50px 0; 7 | } 8 | 9 | & > h1 { 10 | font-size: 6rem; 11 | margin-bottom: 15px; 12 | 13 | @media(max-width: 576px) { 14 | font-size: 4rem; 15 | } 16 | } 17 | 18 | .custom-type-animation { 19 | font-size: 3rem; 20 | margin-bottom: 15px; 21 | 22 | @media(max-width: 576px) { 23 | font-size: 2rem; 24 | } 25 | } 26 | 27 | .custom-cursor-animation { 28 | animation: animate 1.5s linear infinite; 29 | font-size: 3rem; 30 | margin-bottom: 15px; 31 | color: #F18F01; 32 | 33 | @media(max-width: 576px) { 34 | font-size: 2rem; 35 | } 36 | 37 | @keyframes animate{ 38 | 0%{ 39 | opacity: 0; 40 | } 41 | 50%{ 42 | opacity: 0.7; 43 | } 44 | 100%{ 45 | opacity: 0; 46 | } 47 | } 48 | } 49 | } -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | Victoria Marques Website 19 | 20 | 21 | 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /src/assets/images/angularmaterial.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/styles/reset.scss: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, body, div, span, applet, object, iframe, 7 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 8 | a, abbr, acronym, address, big, cite, code, 9 | del, dfn, em, img, ins, kbd, q, s, samp, 10 | small, strike, strong, sub, sup, tt, var, 11 | b, u, i, center, 12 | dl, dt, dd, ol, ul, li, 13 | fieldset, form, label, legend, 14 | table, caption, tbody, tfoot, thead, tr, th, td, 15 | article, aside, canvas, details, embed, 16 | figure, figcaption, footer, header, hgroup, 17 | menu, nav, output, ruby, section, summary, 18 | time, mark, audio, video { 19 | margin: 0; 20 | padding: 0; 21 | border: 0; 22 | font-size: 100%; 23 | font: inherit; 24 | vertical-align: baseline; 25 | } 26 | /* HTML5 display-role reset for older browsers */ 27 | article, aside, details, figcaption, figure, 28 | footer, header, hgroup, menu, nav, section { 29 | display: block; 30 | } 31 | body { 32 | line-height: 1; 33 | } 34 | ol, ul { 35 | list-style: none; 36 | } 37 | blockquote, q { 38 | quotes: none; 39 | } 40 | blockquote:before, blockquote:after, 41 | q:before, q:after { 42 | content: ''; 43 | content: none; 44 | } 45 | table { 46 | border-collapse: collapse; 47 | border-spacing: 0; 48 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "victoria-marques-website", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@testing-library/jest-dom": "^5.16.4", 7 | "@testing-library/react": "^13.3.0", 8 | "@testing-library/user-event": "^13.5.0", 9 | "@types/jest": "^27.5.2", 10 | "@types/node": "^16.11.41", 11 | "@types/react": "^18.0.14", 12 | "@types/react-dom": "^18.0.5", 13 | "react": "^18.2.0", 14 | "react-anchor-link-smooth-scroll": "^1.0.12", 15 | "react-dom": "^18.2.0", 16 | "react-fade-in": "^2.0.1", 17 | "react-scripts": "5.0.1", 18 | "react-scroll": "^1.8.7", 19 | "react-scroll-motion": "^0.3.0", 20 | "sass": "^1.52.3", 21 | "typescript": "^4.7.3", 22 | "typewriter-effect": "^2.18.2", 23 | "web-vitals": "^2.1.4" 24 | }, 25 | "scripts": { 26 | "start": "react-scripts start", 27 | "build": "react-scripts build", 28 | "test": "react-scripts test", 29 | "eject": "react-scripts eject" 30 | }, 31 | "eslintConfig": { 32 | "extends": [ 33 | "react-app", 34 | "react-app/jest" 35 | ] 36 | }, 37 | "browserslist": { 38 | "production": [ 39 | ">0.2%", 40 | "not dead", 41 | "not op_mini all" 42 | ], 43 | "development": [ 44 | "last 1 chrome version", 45 | "last 1 firefox version", 46 | "last 1 safari version" 47 | ] 48 | }, 49 | "devDependencies": { 50 | "@types/react-anchor-link-smooth-scroll": "^1.0.2", 51 | "@types/react-type-animation": "^1.1.1" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/assets/images/redux.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Projects/Projects.scss: -------------------------------------------------------------------------------- 1 | .section-projects { 2 | padding: 0 100px; 3 | margin: 100px 0; 4 | @media (min-width: 320px) and (max-width: 876px) { 5 | padding: 0 30px; 6 | } 7 | 8 | & > p { 9 | font-size: 1.25rem; 10 | max-width: 1100px; 11 | line-height: 1.5; 12 | } 13 | 14 | .project-list { 15 | li { 16 | position: relative; 17 | margin: 50px 0 50px 30px; 18 | 19 | & > h1 { 20 | font-size: 1.5rem; 21 | } 22 | 23 | & > .line { 24 | width: 10px; 25 | background: #f18f01; 26 | border: 1px solid #f18f01; 27 | position: absolute; 28 | top: 3px; 29 | left: -18px; 30 | } 31 | 32 | & > span { 33 | font-style: italic; 34 | font-size: 1.2rem; 35 | display: inline-block; 36 | margin: 10px 0; 37 | } 38 | 39 | & > p { 40 | font-size: 1.2rem; 41 | line-height: 1.5; 42 | } 43 | } 44 | } 45 | 46 | .challenger-list { 47 | display: inline-flex; 48 | // gap: 20px; 49 | // justify-content: center; 50 | // align-items: center; 51 | 52 | @media (min-width: 320px) and (max-width: 876px) { 53 | flex-direction: column; 54 | } 55 | 56 | li { 57 | display: inline-flex; 58 | flex-direction: column; 59 | align-items: center; 60 | justify-content: center; 61 | flex-wrap: wrap; 62 | margin: 50px 0; 63 | img { 64 | width: 100%; 65 | } 66 | 67 | a { 68 | text-decoration: none; 69 | color: #f18f01; 70 | font-weight: 600; 71 | margin-top: 10px; 72 | font-weight: 600; 73 | font-size: 1.2rem; 74 | 75 | &:hover { 76 | color: #000; 77 | } 78 | } 79 | } 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /src/pages/TechnologiesThatIKnow/images.ts: -------------------------------------------------------------------------------- 1 | import ImageHTML5 from '../../assets/images/html5.svg'; 2 | import ImageAngular from '../../assets/images/angular.svg'; 3 | import ImageAngularMaterial from '../../assets/images/angularmaterial.svg'; 4 | import ImageAPI from '../../assets/images/api.png'; 5 | import ImageBootstrap from '../../assets/images/bootstrap.svg'; 6 | import ImageChakraUI from '../../assets/images/chakraui.svg'; 7 | import ImageCSS3 from '../../assets/images/css3.svg'; 8 | import ImageGit from '../../assets/images/git.svg'; 9 | import ImageJasmineKarma from '../../assets/images/jasmine-karma.png'; 10 | import ImageJavaScript from '../../assets/images/javascript.svg'; 11 | import ImageReact from '../../assets/images/react.svg'; 12 | import ImageRedux from '../../assets/images/redux.svg'; 13 | import ImageSASS from '../../assets/images/sass.svg'; 14 | import ImageStyledComponents from '../../assets/images/styled-components.png'; 15 | import ImageTailwindCSS from '../../assets/images/tailwindcss.png'; 16 | import ImageTypeScript from '../../assets/images/typescript.svg'; 17 | import ImageVue from '../../assets/images/vue.png'; 18 | import ImageNestJS from '../../assets/images/nestJs.svg'; 19 | import ImageExpressJS from '../../assets/images/expressJs.svg'; 20 | import ImageNodeJS from '../../assets/images/nodeJs.svg'; 21 | import ImageMongoDB from '../../assets/images/mongoDB.png'; 22 | import ImageMySQL from '../../assets/images/mysql.png'; 23 | 24 | export { 25 | ImageHTML5, 26 | ImageAngular, 27 | ImageAngularMaterial, 28 | ImageAPI, 29 | ImageBootstrap, 30 | ImageChakraUI, 31 | ImageCSS3, 32 | ImageGit, 33 | ImageJasmineKarma, 34 | ImageJavaScript, 35 | ImageReact, 36 | ImageRedux, 37 | ImageSASS, 38 | ImageStyledComponents, 39 | ImageTailwindCSS, 40 | ImageTypeScript, 41 | ImageVue, 42 | ImageNestJS, 43 | ImageExpressJS, 44 | ImageNodeJS, 45 | ImageMongoDB, 46 | ImageMySQL 47 | } -------------------------------------------------------------------------------- /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 the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will 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 | -------------------------------------------------------------------------------- /src/assets/images/chakraui.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/sass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/TechnologiesThatIKnow/TechnologiesThatIKnow.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import "./TechnologiesThatIKnow.scss"; 3 | import Subtitle from "../../components/Subtitle/Subtitle"; 4 | import * as I from "./images"; 5 | import FadeIn from "react-fade-in"; 6 | 7 | export default function TechnologiesThatIKnow() { 8 | return ( 9 |
10 | 11 | 12 | 13 |
    14 |
  • 15 | HTML5 16 |
  • 17 | 18 | {/* */} 19 |
  • 20 | CSS3 21 |
  • 22 | {/*
    */} 23 | {/* */} 24 |
  • 25 | JavaScript 26 |
  • 27 | {/*
    */} 28 | {/* */} 29 |
  • 30 | TypeScript 31 |
  • 32 | {/*
    */} 33 | {/* */} 34 |
  • 35 | SASS 36 |
  • 37 | {/*
    */} 38 | {/* */} 39 |
  • 40 | Styled Components 41 |
  • 42 | {/*
    */} 43 | {/* */} 44 |
  • 45 | Bootstrap 46 |
  • 47 | {/*
    */} 48 | {/* */} 49 |
  • 50 | Angular Material 51 |
  • 52 | {/*
    */} 53 | 54 | {/* */} 55 |
  • 56 | NestJS 57 |
  • 58 | {/*
    */} 59 | 60 | {/* */} 61 |
  • 62 | React 63 |
  • 64 | {/*
    */} 65 | {/* */} 66 |
  • 67 | Redux 68 |
  • 69 | {/*
    */} 70 | {/* */} 71 |
  • 72 | Vue 73 |
  • 74 | {/*
    */} 75 | {/* */} 76 |
  • 77 | API 78 |
  • 79 | {/*
    */} 80 | {/* */} 81 |
  • 82 | Git 83 |
  • 84 | {/*
    */} 85 | {/* */} 86 |
  • 87 | Express JS 92 |
  • 93 | {/*
    */} 94 | {/* */} 95 |
  • 96 | Node JS 97 |
  • 98 | {/*
    */} 99 | {/* */} 100 |
  • 101 | Angular 102 |
  • 103 | {/*
    */} 104 | {/* */} 105 |
  • 106 | MongoDB 107 |
  • 108 | {/*
    */} 109 | {/* */} 110 |
  • 111 | MySQL 112 |
  • 113 | {/*
    */} 114 | 115 | {/* */} 116 |
  • 117 | Jasmine and Karma 122 |
  • 123 | {/*
    */} 124 | {/* */} 125 |
  • 126 | Chakra UI 127 |
  • 128 | {/*
    */} 129 | {/* */} 130 |
  • 131 | Tailwind CSS 136 |
  • 137 | {/*
    */} 138 |
139 |
140 |
141 | ); 142 | } 143 | -------------------------------------------------------------------------------- /src/pages/Projects/Projects.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Subtitle from "../../components/Subtitle/Subtitle"; 3 | import "./Projects.scss"; 4 | import ImageHuddle from "../../assets/images/huddle-github.png"; 5 | import ImageSocial from "../../assets/images/social-github.png"; 6 | import ImageCard from "../../assets/images/card-github.png"; 7 | import FadeIn from "react-fade-in"; 8 | 9 | export default function Projects() { 10 | return ( 11 |
12 | 13 | 14 |
    15 | 16 |
  • 17 | 18 |

    Compliance on Hands

    19 | 20 | Tecnologias: Angular 13, Jasmine + Karma, SASS, PDF Make, 21 | Bootstrap, NgxDropzone, NgxCSV 22 | 23 |

    24 | Participo do desenvolvimento do layout do sistema de gerenciamento 25 | de compliance que visa manter a integridade da organização. 26 |

    27 |
  • 28 |
    29 | 30 |
  • 31 | 32 |

    Innovation Week

    33 | Tecnologias: Vue.js 3, SASS, Axios 34 |

    35 | Participei do desenvolvimento do layout de um questionário para 36 | computar feedbacks do público presente no evento.{" "} 37 |

    38 |
  • 39 |
    40 | 41 |
  • 42 | 43 |

    Monet by the water

    44 | 45 | Tecnologias: React, TypeScript, Redux Toolkit, Styled Components, 46 | Chakra UI, Axios, Integração Gateway NMI 47 | 48 |

    49 | Participei do desenvolvimento do layout de e-commerce para venda 50 | de ingressos do evento. 51 |

    52 |
  • 53 |
    54 | 55 |
  • 56 | 57 |

    Clube de Vantagens

    58 | 59 | Tecnologias: React, TypeScript, Redux Toolkit, SASS, Tailwind CSS, 60 | Axios 61 | 62 |

    63 | Participei do desenvolvimento do layout do sistema de gamificação 64 | que disponibilizava benefícios de acordo com o plano de telefonia 65 | do usuário e era possível adquirir mais benefícios aumentando de 66 | nível conforme o usuário acessava a plataforma. 67 |

    68 |
  • 69 |
    70 | 71 |
  • 72 | 73 |

    Guia do Pneu

    74 | Tecnologias: Angular 8, SASS, Angular Material 75 |

    76 | Participei do desenvolvimento do layout do sistema para controle e 77 | gerenciamento de pneus para veículos de 4 e 2 rodas e fui 78 | responsável pela adição de novas funcionalidades e a 79 | manutenibilidade.{" "} 80 |

    81 |
  • 82 |
    83 |
84 | 85 | 86 | 87 | 125 |
126 | ); 127 | } 128 | -------------------------------------------------------------------------------- /src/assets/images/nestJs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/images/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/mongoDB.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/assets/images/nodeJs.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | --------------------------------------------------------------------------------