-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
2,164 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ dist/ | |
node_modules/ | ||
.parcel-cache | ||
yarn.lock | ||
yarn-error.log | ||
yarn-error.log | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,52 @@ | ||
{ | ||
"name": "gabrielmendonca.com", | ||
"version": "1.0.0", | ||
"source": "src/index.html", | ||
"repository": "[email protected]:brunoom1/brunoom1.github.com.git", | ||
"author": "Gabriel Mendonça <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "parcel build", | ||
"start": "parcel serve" | ||
"name": "portfolio", | ||
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
"@emailjs/browser": "^3.10.0", | ||
"@testing-library/jest-dom": "^5.16.5", | ||
"@testing-library/react": "^13.4.0", | ||
"@testing-library/user-event": "^13.5.0", | ||
"bootstrap": "^5.2.3", | ||
"react": "^18.2.0", | ||
"react-bootstrap": "^2.7.0", | ||
"react-dom": "^18.2.0", | ||
"react-github-calendar": "^3.4.0", | ||
"react-icons": "^4.7.1", | ||
"react-markdown": "^8.0.5", | ||
"react-parallax-tilt": "^1.7.90", | ||
"react-pdf": "^6.2.2", | ||
"react-router-dom": "^6.7.0", | ||
"react-scripts": "5.0.1", | ||
"react-tsparticles": "^1.42.2", | ||
"typewriter-effect": "^2.19.0", | ||
"web-vitals": "^2.1.4" | ||
}, | ||
"devDependencies": { | ||
"@parcel/transformer-sass": "^2", | ||
"@types/bootstrap": "^5.2.6", | ||
"@types/react-dom": "^18.0.9", | ||
"@types/styled-components": "^5.1.26", | ||
"node-sass": "^8.0.0", | ||
"parcel": "^2.8.2", | ||
"process": "^0.11.10", | ||
"tsc": "^2.0.4", | ||
"typescript": "^4.9.4" | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
}, | ||
"targets": { | ||
"default": { | ||
"distDir": "./dist" | ||
} | ||
"eslintConfig": { | ||
"extends": [ | ||
"react-app", | ||
"react-app/jest" | ||
] | ||
}, | ||
"dependencies": { | ||
"bootstrap": "5.2.3", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
"browserslist": { | ||
"production": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"development": [ | ||
"last 1 chrome version", | ||
"last 1 firefox version", | ||
"last 1 safari version" | ||
] | ||
}, | ||
"imports": { | ||
"@": "./src" | ||
"devDependencies": { | ||
"pdfjs-dist": "^3.2.146" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" href="%PUBLIC_URL%/fav.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta | ||
name="description" | ||
content="Portfolio, desenvolvedor fullstack. Nodejs, reactjs, html, css, javascript, php, mysql, postgres, docker. Banco de dados, relacional, SQL" | ||
/> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
<title>Gabriel Mendonça - Desenvolvedor Fullstack - Portfólio - Nodejs, Reactjs </title> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"short_name": "React App", | ||
"name": "Create React App Sample", | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "64x64 32x32 24x24 16x16", | ||
"type": "image/x-icon" | ||
}, | ||
{ | ||
"src": "logo192.png", | ||
"type": "image/png", | ||
"sizes": "192x192" | ||
}, | ||
{ | ||
"src": "logo512.png", | ||
"type": "image/png", | ||
"sizes": "512x512" | ||
} | ||
], | ||
"start_url": ".", | ||
"display": "standalone", | ||
"theme_color": "#000000", | ||
"background_color": "#ffffff" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# https://www.robotstxt.org/robotstxt.html | ||
User-agent: * | ||
Disallow: |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.App { | ||
text-align: center; | ||
} | ||
|
||
.App-logo { | ||
height: 40vmin; | ||
pointer-events: none; | ||
} | ||
|
||
@media (prefers-reduced-motion: no-preference) { | ||
.App-logo { | ||
animation: App-logo-spin infinite 20s linear; | ||
} | ||
} | ||
|
||
.App-header { | ||
background-color: #282c34; | ||
min-height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: calc(10px + 2vmin); | ||
color: white; | ||
} | ||
|
||
.App-link { | ||
color: #61dafb; | ||
} | ||
|
||
@keyframes App-logo-spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import React, { useState, useEffect } from "react"; | ||
import { | ||
BrowserRouter as Router, | ||
Route, | ||
Routes, | ||
Navigate | ||
} from "react-router-dom"; | ||
|
||
import Home from './pages/Home' | ||
import Skill from './pages/Skillset' | ||
import Project from './pages/Projects' | ||
import Resume from './pages/Resume' | ||
import Contact from './pages/Contact' | ||
|
||
import Navbar from "./components/Navbar/Navbar"; | ||
import Footer from "./components/Footer/Footer"; | ||
import Preloader from "./components/PreLoader" | ||
import ScrollToTop from "./components/ScrollToTop" | ||
|
||
import "./App.css"; | ||
import "./style.css"; | ||
import "bootstrap/dist/css/bootstrap.min.css"; | ||
|
||
function App() { | ||
const [load, upadateLoad] = useState(true); | ||
|
||
useEffect(() => { | ||
const timer = setTimeout(() => { | ||
upadateLoad(false); | ||
}, 1200); | ||
|
||
return () => clearTimeout(timer); | ||
}, []); | ||
|
||
return ( | ||
<Router> | ||
<Preloader load={load} /> | ||
<div className="App" id={load ? "no-scroll" : "scroll"}> | ||
<Navbar /> | ||
<ScrollToTop /> | ||
<Routes> | ||
<Route path="/" element={<Home />} /> | ||
<Route path="/skillset" element={<Skill />} /> | ||
<Route path="/project" element={<Project />} /> | ||
<Route path="/resume" element={<Resume />} /> | ||
<Route path="/contact" element={<Contact />} /> | ||
<Route path="*" element={<Navigate to="/"/>} /> | ||
</Routes> | ||
<Footer /> | ||
</div> | ||
</Router> | ||
); | ||
} | ||
|
||
export default App; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/assets/js/components/header/header-branding.module.scss
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.