Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtsolovey committed Nov 1, 2022
1 parent ce00164 commit 895c974
Show file tree
Hide file tree
Showing 35 changed files with 2,917 additions and 6,515 deletions.
8,673 changes: 2,305 additions & 6,368 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
{
"homepage": "http://dmtsolovey.github.io/CV",
"name": "resume",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"gh-pages": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
Expand Down
Binary file removed public/favicon.ico
Binary file not shown.
Binary file added public/images/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/photo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 8 additions & 24 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,18 @@
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>CV</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`.
-->
</body>
</html>
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
17 changes: 0 additions & 17 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,6 @@
{
"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",
Expand Down
53 changes: 23 additions & 30 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,31 @@
.App {
text-align: center;
body {
margin: 0px;
box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1);
width: 1200px;
margin: 0 auto;
font-family: "Montserrat", sans-serif;
}

.App-logo {
height: 40vmin;
pointer-events: none;
.container {
display: flex;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
.sidebar {
background: #1e2939;
}

.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;
.content {
background-color: white;
padding: 20px 90px;
}

.App-link {
color: #61dafb;
h3 {
font-style: normal;
font-weight: 700;
font-size: 22px;
line-height: 27px;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
h4 {
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 20px;
}
25 changes: 0 additions & 25 deletions src/App.js

This file was deleted.

27 changes: 27 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import AboutUser from "./components/content/AboutUser/AboutUser";
import Education from "./components/content/Education/Education";
import Expeirence from "./components/content/Expeirence/Experience";
import Projects from "./components/content/Projects/Projects";
import Contacts from "./components/sidebar/Contacts/Contacts";
import Skills from "./components/sidebar/Skills/Skills";
import './App.css';


export default function App() {
return (
<>
<div className="container">
<div className="sidebar">
<Contacts />
<Skills />
</div>
<div className="content">
<AboutUser />
<Projects />
<Expeirence />
<Education />
</div>
</div>
</>
);
}
8 changes: 0 additions & 8 deletions src/App.test.js

This file was deleted.

25 changes: 25 additions & 0 deletions src/components/content/AboutUser/AboutUser.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
.user-title {
color: #000000;
margin-bottom: 20px;
}

.user-name {
font-style: normal;
font-weight: 700;
font-size: 45px;
line-height: 55px;
color: #000000;
margin-top: 0;
margin-bottom: 0;
}

.user-description {
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 24px;
color: #595959;
margin-top: 25px;
width: 400px;
margin-bottom: 0;
}
16 changes: 16 additions & 0 deletions src/components/content/AboutUser/AboutUser.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import "./AboutUser.css";

export default function AboutUser() {
return (
<div className="about-user">
<h4 className="user-title">Junior Frontend Developer</h4>
<h1 className="user-name">Dmytro Solovey</h1>
<p className="user-description">
Hi, my name is Dmytro, I'm 26 years old! I am from Ukraine, Odessa city. I
am a future front-end developer with a great desire to reach new heights
and complete the tasks! I will be very glad to cooperate because any
forward movement is an experience.
</p>
</div>
);
}
32 changes: 32 additions & 0 deletions src/components/content/Education/Education.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.education-title {
font-style: normal;
font-weight: 700;
font-size: 22px;
line-height: 27px;
color: #000000;
margin-top: 40px;
margin-bottom: 0;
}

.education-organization {
color: #fb6d3a;
margin-top: 10px;
margin-bottom: 0;
}

.management {
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 17px;
color: #000000;
margin-top: 10px;
margin-bottom: 0;
}
.education-time {
font-style: normal;
font-weight: 400;
font-size: 12px;
line-height: 15px;
color: #a8a8a8;
}
22 changes: 22 additions & 0 deletions src/components/content/Education/Education.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import "./Education.css";

export default function Education() {
return (
<>
<div>
<h3 className="education-title">Education</h3>
<h4 className="education-organization">Communication Academy</h4>
<h5 className="management">Telecommunicaton</h5>
<p className="education-time">September 2012 - June 2017 | Odessa</p>
</div>
<div>
<h4 className="education-organization">FreeCodeCamp Online Courses</h4>
<h5 className="management">Learn HTML5 and SCC3</h5>
</div>
<div>
<h4 className="education-organization">Codewars tasks (5 kyu)</h4>
<h5 className="management">JavaScript Language</h5>
</div>
</>
);
}
21 changes: 21 additions & 0 deletions src/components/content/Expeirence/Expeirence.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.work-block {
margin-top: 50px;
}

.work-title {
color: #000000;
margin-bottom: 10px;
}

.see-all {
border-radius: 5px;
border: 1px solid #595959;
background-color: #fb6d3a;
font-style: normal;
font-weight: 700;
font-size: 14px;
line-height: 16px;
cursor: pointer;
color: #ffffff;

}
21 changes: 21 additions & 0 deletions src/components/content/Expeirence/Experience.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { expierence } from "./expeirence";
import Work from "./Work/Work";
import "./Expeirence.css";

export default function Expeirence() {
// const [count, setCount] = useState(3);
// const handle = (event) => {
// event.preventDefault();
// setCount(event.target.value);
// };

return (
<div className="work-block">
<h3 className="work-title">Work Expeirence</h3>
{/* <input type="range" min={1} max={5} value={count} onChange={handle} /> */}
{expierence.map((item) => (
<Work key={item.company} {...item} />
))}
</div>
);
}
Loading

0 comments on commit 895c974

Please sign in to comment.