Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30,863 changes: 607 additions & 30,256 deletions package-lock.json

Large diffs are not rendered by default.

41 changes: 1 addition & 40 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,5 @@
{
"name": "labeninjas",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^2.2.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"framer-motion": "^6.3.16",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "5.0.1",
"styled-components": "^5.3.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
"@material-ui/core": "^4.11.3"
}
}
44 changes: 44 additions & 0 deletions public/Index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
body {
font-family: "Poppins", sans-serif;
background-color: #fafafa;
}

.row {
display: flex;
justify-content: center;
align-items: center;
}
.card {
border-radius: 5px;
box-shadow: 7px 7px 13px 0px rgba(50, 50, 50, 0.22);
padding: 30px;
margin: 20px;
width: 400px;
transition: all 0.3s ease-out;
}
.card:hover {
transform: translateY(-5px);
cursor: pointer;
}

.card p {
color: #a3a5ae;
font-size: 16px;
}

.image {
float: right;
max-width: 64px;
max-height: 64px;
}
.blue {
border-left: 3px solid #4895ff;
}

.green {
border-left: 3px solid #3bb54a;
}

.red {
border-left: 3px solid #b3404a;
}
32 changes: 20 additions & 12 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="index.css"></link>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand All @@ -27,17 +28,24 @@
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
<div class="row">
<div class="card green">
<h2>serviço 1</h2>
<p></p>
<img class="" src="" alt="" />
</div>

<div class="card blue">
<h2>Serviço 2</h2>
<p></p>
<img class="" src="" alt="" />
</div>

<div class="card red">
<h2>Serviço 3</h2>
<p></p>
<img class="" src="" alt="" />
</div>
</div>
</body>
</html>
38 changes: 0 additions & 38 deletions src/App.css

This file was deleted.

8 changes: 0 additions & 8 deletions src/App.test.js

This file was deleted.

13 changes: 0 additions & 13 deletions src/index.css

This file was deleted.

3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';


const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
Expand Down
1 change: 0 additions & 1 deletion src/logo.svg

This file was deleted.

13 changes: 0 additions & 13 deletions src/reportWebVitals.js

This file was deleted.

5 changes: 0 additions & 5 deletions src/setupTests.js

This file was deleted.