Volddemar4ik 2 年 前
コミット
c5d1a60bc8

+ 23 - 0
00/.gitignore

@@ -0,0 +1,23 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*

+ 70 - 0
00/README.md

@@ -0,0 +1,70 @@
+# Getting Started with Create React App
+
+This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
+
+## Available Scripts
+
+In the project directory, you can run:
+
+### `npm start`
+
+Runs the app in the development mode.\
+Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
+
+The page will reload when you make changes.\
+You may also see any lint errors in the console.
+
+### `npm test`
+
+Launches the test runner in the interactive watch mode.\
+See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
+
+### `npm run build`
+
+Builds the app for production to the `build` folder.\
+It correctly bundles React in production mode and optimizes the build for the best performance.
+
+The build is minified and the filenames include the hashes.\
+Your app is ready to be deployed!
+
+See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
+
+### `npm run eject`
+
+**Note: this is a one-way operation. Once you `eject`, you can't go back!**
+
+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.
+
+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.
+
+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.
+
+## Learn More
+
+You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
+
+To learn React, check out the [React documentation](https://reactjs.org/).
+
+### Code Splitting
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
+
+### Analyzing the Bundle Size
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
+
+### Making a Progressive Web App
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
+
+### Advanced Configuration
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
+
+### Deployment
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
+
+### `npm run build` fails to minify
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)

+ 0 - 0
00/index.html


ファイルの差分が大きいため隠しています
+ 28715 - 0
00/package-lock.json


+ 38 - 0
00/package.json

@@ -0,0 +1,38 @@
+{
+  "name": "reactmarkup",
+  "version": "0.1.0",
+  "private": true,
+  "dependencies": {
+    "@testing-library/jest-dom": "^5.16.5",
+    "@testing-library/react": "^13.4.0",
+    "@testing-library/user-event": "^13.5.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",
+    "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"
+    ]
+  }
+}

BIN
00/public/favicon.ico


BIN
00/public/img/client.png


BIN
00/public/img/gallery-1.png


BIN
00/public/img/gallery-2.png


BIN
00/public/img/logo.png


BIN
00/public/img/me.png


BIN
00/public/img/pc-top.png


BIN
00/public/img/video.png


+ 47 - 0
00/public/index.html

@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8" />
+    <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
+    <meta name="viewport" content="width=device-width, initial-scale=1" />
+    <meta name="theme-color" content="#000000" />
+    <meta
+      name="description"
+      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`.
+    -->
+    <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=Roboto:wght@400;500&display=swap" rel="stylesheet">
+    <link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
+    <title>Resume</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>

BIN
00/public/logo192.png


BIN
00/public/logo512.png


+ 25 - 0
00/public/manifest.json

@@ -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"
+}

+ 3 - 0
00/public/robots.txt

@@ -0,0 +1,3 @@
+# https://www.robotstxt.org/robotstxt.html
+User-agent: *
+Disallow:

+ 987 - 0
00/src/App.css

@@ -0,0 +1,987 @@
+/* основные стили */
+html {
+  box-sizing: border-box;
+}
+
+*,
+*:before,
+*:after {
+  box-sizing: inherit;
+}
+
+body {
+  font-family: 'Roboto', sans-serif;
+  font-size: 16px;
+  line-height: 1.65em;
+  font-style: normal;
+  font-weight: 400;
+  vertical-align: text-top;
+  color: #727272;
+}
+
+.wrapper {
+  overflow: hidden;
+  width: 100%;
+  position: relative;
+}
+
+h1,
+h2,
+h3 {
+  font-weight: 500;
+  color: #000;
+  margin: 0;
+  padding: 0;
+}
+
+h1 {
+  font-size: 48px;
+  line-height: 1.65em;
+}
+
+h2 {
+  font-size: 32px;
+  line-height: 1.19em;
+}
+
+h3 {
+  font-size: 21px;
+  line-height: 1.19em;
+}
+
+.container {
+  width: 100%;
+  max-width: 1180px;
+  padding: 15px;
+  margin: 0 auto;
+}
+
+.description-text {
+  max-width: 550px;
+  text-align: center;
+  padding: 5px;
+}
+
+.description-text h2 {
+  margin-bottom: 50px;
+}
+
+.description-text p {
+  margin: 0;
+}
+
+/* header  */
+
+.header {
+  position: absolute;
+  top: 0;
+  left: 0;
+  right: 0;
+  padding-top: 42px;
+}
+
+.header .container {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.logo {
+  width: 96px;
+  padding-left: 17px;
+}
+
+.logo img {
+  max-width: 100%;
+  height: auto;
+  vertical-align: middle;
+}
+
+.nav {
+  padding-right: 27px;
+}
+
+#burger {
+  display: none;
+}
+
+.nav-menu {
+  margin: 0;
+  padding: 0;
+}
+
+.nav-items {
+  list-style: none;
+  display: inline-block;
+  text-align: center;
+  letter-spacing: 0.1em;
+}
+
+.nav-items+.nav-items {
+  margin-left: 42px;
+}
+
+.nav-menu-link {
+  text-decoration: none;
+  color: #000;
+  text-transform: uppercase;
+}
+
+.nav-menu-link:hover {
+  color: #34547A;
+  text-shadow: 0 0 .9px #34547A;
+}
+
+/* section banner */
+
+.banner {
+  display: flex;
+  align-items: center;
+  height: 100vh;
+  background: #EEEFF1;
+}
+
+.banner .container {
+  display: flex;
+  justify-content: space-between;
+}
+
+.banner-img {
+  width: 50%;
+  text-align: left;
+  padding-left: 102px;
+}
+
+.banner-img-container {
+  display: inline-block;
+  width: 357px;
+}
+
+.banner-img-container img {
+  max-width: 100%;
+  height: auto;
+}
+
+.banner-text {
+  width: 50%;
+  padding-right: 15px;
+}
+
+.banner-text .description-text {
+  margin-top: -35px;
+  text-align: left;
+}
+
+.banner-text h1 {
+  margin-bottom: 60px;
+}
+
+.banner-button {
+  display: inline-block;
+  text-decoration: none;
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: 0.1em;
+  color: #fff;
+  padding: 25px 41px;
+  background-color: #34547A;
+  margin-top: 60px;
+}
+
+/* section about-me  */
+
+.about-me {
+  padding-top: 99px;
+  padding-bottom: 80px;
+}
+
+.about-me .container {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+}
+
+/* section project */
+
+.project {
+  padding: 85px 0;
+  background: #34547A
+}
+
+.project .container {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+  text-align: center;
+}
+
+.project-link {
+  display: inline-block;
+  width: 16%;
+  text-decoration: none;
+  color: #fff;
+}
+
+.project-link+.project-link {
+  margin-left: 49px;
+}
+
+.icon-project {
+  font-size: 3.125em;
+}
+
+.project-text {
+  display: inline-block;
+  margin-left: 20px;
+  text-align: left;
+}
+
+.project-text h3 {
+  color: #fff;
+  margin-bottom: 5px;
+}
+
+/* section skill */
+
+.skill {
+  padding-top: 87px;
+  padding-bottom: 86px;
+}
+
+.skill .container {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.skill-box {
+  width: 445px;
+}
+
+.skill-box h2 {
+  margin-bottom: 50px;
+}
+
+.load-scale {
+  color: #727272;
+  font-size: 16px;
+  line-height: 1.625em;
+  max-width: 445px;
+}
+
+.skill-item+.skill-item {
+  padding-top: 30px;
+}
+
+.skill-title {
+  display: block;
+  margin-bottom: 20px;
+}
+
+.skill-load-skale {
+  position: relative;
+  height: 4px;
+  background-color: #c4c4c4;
+}
+
+.skill-load-progress {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  background: #43537A;
+  width: 75%;
+}
+
+.skill-img {
+  width: 555px;
+}
+
+.skill-img img {
+  max-width: 100%;
+  height: auto;
+}
+
+/* section work  */
+
+.work {
+  padding-top: 80px;
+  padding-bottom: 85px;
+  background: #EEEFF1;
+}
+
+.work .container {
+  display: flex;
+  justify-content: center;
+  flex-wrap: wrap;
+}
+
+.work-img {
+  width: 1110px;
+  margin-top: 52px;
+  text-align: center;
+  position: relative;
+}
+
+.work-video {
+  max-width: 100%;
+  height: auto;
+}
+
+.icon-play-button {
+  position: absolute;
+  font-size: 6.25em;
+  top: 50%;
+  left: 50%;
+  transform: translate(-50%, -50%);
+  color: #fff;
+}
+
+/* section gallery  */
+
+.gallery-block {
+  display: flex;
+  flex-wrap: wrap;
+}
+
+.gallery-item {
+  display: inline-block;
+  width: 25%;
+  padding-top: 25%;
+  background-position: center;
+  background-repeat: no-repeat;
+  background-size: cover;
+  position: relative;
+
+}
+
+.gallery-item-hover {
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  right: 0;
+  opacity: 0;
+  background-color: rgba(52, 84, 122, 0.8);
+  transition: opacity .5s ease-in-out;
+}
+
+.gallery-item-first {
+  background-image: url(img/gallery-1.png);
+}
+
+.gallery-item-second {
+  background-image: url(img/gallery-2.png);
+}
+
+.icon-view {
+  font-size: 6.25em;
+  color: #fff;
+  position: absolute;
+  top: 50%;
+  left: 50%;
+  transform: translate(-50%, -50%);
+}
+
+.gallery-item-hover:hover {
+  opacity: 1;
+}
+
+/* section client */
+
+.client {
+  padding-top: 57px;
+  padding-bottom: 85px;
+}
+
+.client .container {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  flex-wrap: wrap;
+}
+
+.client-item {
+  display: inline-block;
+  width: 25%;
+  max-width: 255px;
+  padding-top: 10.45%;
+  background-repeat: no-repeat;
+  background-size: cover;
+  background-position: center;
+  margin: 0 15px;
+  background-image: url(img/client.png)
+}
+
+.client-item:nth-child(4n+1) {
+  margin-left: 0;
+}
+
+.client-item:last-child,
+.client-item:nth-child(4n) {
+  margin-right: 0;
+}
+
+/* section feedback  */
+
+.feedback {
+  padding-top: 80px;
+  padding-bottom: 85px;
+  background: #EEEFF1
+}
+
+.feedback .container {
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+}
+
+.feedback-form {
+  max-width: 540px;
+  margin-top: 60px;
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+}
+
+.feedback-form-name {
+  font-size: 14px;
+  border: none;
+  padding: 17px 20px;
+}
+
+.feedback-form-name:nth-child(-n+2) {
+  width: 50%;
+  max-width: 255px;
+  min-height: 50px;
+}
+
+.feedback-form-name:nth-child(3) {
+  margin-top: 20px;
+  width: 100%;
+  min-height: 141px;
+  resize: none;
+}
+
+.feedback-form input,
+textarea {
+  outline: none;
+}
+
+.feedback-button {
+  margin: 0 auto;
+  margin-top: 50px;
+  display: block;
+  font-size: 14px;
+  line-height: 1.65em;
+  text-align: center;
+  text-transform: uppercase;
+  letter-spacing: 0.15em;
+  color: #fff;
+  padding: 20px 48px;
+  background-color: #34547A;
+  border: none;
+}
+
+/* footer  */
+
+footer {
+  padding: 35px 0;
+  background: #34547A;
+}
+
+.footer .container {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.my-data {
+  color: #fff;
+  padding-left: 21px;
+}
+
+.my-data h3 {
+  color: #fff;
+  margin-bottom: 20px;
+}
+
+.my-data span {
+  font-size: 13px;
+  line-height: 1.61em;
+}
+
+.social-group {
+  padding-right: 4px;
+}
+
+.social {
+  text-decoration: none;
+  vertical-align: text-top;
+}
+
+.icon-social {
+  font-size: 2.73em;
+  color: #fff;
+}
+
+.social+.social {
+  margin-left: 20px;
+}
+
+/* media  */
+
+@media (max-width: 1200px) {
+  .container {
+    width: 100%;
+  }
+
+  .banner-img {
+    padding-left: 0;
+    text-align: center;
+  }
+
+  .icon-project {
+    font-size: 2.5em;
+  }
+
+  .project-link+.project-link {
+    margin-left: 15px;
+  }
+
+  .project-text h3 {
+    margin: 0;
+  }
+
+  .skill-box {
+    width: 48%;
+  }
+
+  .skill-img {
+    width: 48%;
+  }
+
+  .client-item {
+    max-width: 25%;
+    margin: 0;
+  }
+}
+
+@media (max-width: 1024px) {
+
+  .logo {
+    padding-left: 0%;
+  }
+
+  .nav {
+    padding-right: 0;
+  }
+
+  .project .container {
+    justify-content: center;
+    flex-wrap: wrap;
+  }
+
+  .project-link {
+    width: 20%;
+    text-align: center;
+    margin-top: 25px;
+    margin-bottom: 25px;
+  }
+
+  .project-link:last-child {
+    margin-right: 15px;
+  }
+
+  .icon-project {
+    font-size: 3.125em;
+  }
+
+  .project-text {
+    margin-left: 5px;
+  }
+
+  .project-text h3 {
+    margin: 5px;
+  }
+}
+
+@media (max-width: 890px) {
+  .banner-text h1 {
+    margin-bottom: 5px;
+    line-height: 1.19em;
+  }
+
+  .banner-button {
+    margin-top: 25px;
+  }
+
+  .skill-box h2 {
+    margin-bottom: 20px;
+  }
+}
+
+@media (max-width: 768px) {
+  .nav-items {
+    margin-left: 42px;
+  }
+
+  .banner .container {
+    flex-direction: column;
+    align-items: center;
+  }
+
+  .banner-img {
+    width: auto;
+  }
+
+  .banner-text {
+    padding-right: 0;
+    width: auto;
+  }
+
+  .banner-text .description-text {
+    display: inline-block;
+    margin-top: 60px;
+    text-align: center;
+  }
+
+  .banner-text h1 {
+    margin-bottom: 50px;
+  }
+
+  .banner-button {
+    margin-top: 60px;
+  }
+
+  .project-link {
+    width: 25%;
+  }
+
+  .skill-box h2 {
+    margin-bottom: 15px;
+  }
+
+  .skill-title {
+    margin-bottom: 10px;
+  }
+
+  .icon-play-button {
+    font-size: 4.69em;
+  }
+
+  .icon-view {
+    font-size: 3.125em;
+  }
+
+  .client-item {
+    margin: 0 5px;
+  }
+
+  .client-item:nth-child(4n+1) {
+    margin-left: 5px;
+  }
+
+  .client-item:last-child,
+  .client-item:nth-child(4n) {
+    margin-right: 5px;
+  }
+
+  .feedback-form-name:nth-child(-n+2) {
+    width: 48%;
+  }
+
+  /* burger-menu */
+
+  .menu-btn {
+    display: flex;
+    align-items: center;
+    position: relative;
+    top: 0px;
+    right: 0px;
+    width: 50px;
+    height: 30px;
+    cursor: pointer;
+    z-index: 1;
+  }
+
+  .menu-btn>span,
+  .menu-btn>span::before,
+  .menu-btn>span::after {
+    display: block;
+    position: absolute;
+    width: 100%;
+    height: 4px;
+    background-color: #34547A;
+    z-index: 1;
+  }
+
+  .menu-btn>span::before {
+    content: '';
+    top: -10px;
+  }
+
+  .menu-btn>span::after {
+    content: '';
+    top: 10px;
+  }
+
+  .nav-menu {
+    display: block;
+    position: fixed;
+    visibility: hidden;
+    top: 0;
+    right: -100%;
+    width: 100%;
+    height: 100%;
+    margin: 0;
+    padding: 80px 0;
+    list-style: none;
+    text-align: center;
+    background-color: #34547A;
+    opacity: 0.98;
+    text-align: right;
+    z-index: 2;
+  }
+
+  .nav-items {
+    display: block;
+    text-align: left;
+  }
+
+  .nav-menu-link {
+    display: block;
+    padding: 12px 24px;
+    color: #333;
+    font-family: 'Roboto', sans-serif;
+    font-size: 20px;
+    font-weight: 600;
+    text-decoration: none;
+  }
+
+  .nav-menu-link:hover {
+    background-color: #092446;
+    color: #fff;
+  }
+
+  .nav a {
+    text-decoration: none;
+    color: #fff;
+    font-size: 1.2em;
+  }
+
+  #burger:checked~.menu-btn {
+    position: fixed;
+    top: 60px;
+    right: 17px;
+    z-index: 3;
+  }
+
+  #burger:checked~.menu-btn>span {
+    transform: rotate(45deg);
+    background-color: #fff;
+  }
+
+  #burger:checked~.menu-btn>span::before {
+    top: 0;
+    transform: rotate(0);
+    background-color: #fff;
+  }
+
+  #burger:checked~.menu-btn>span::after {
+    top: 0;
+    transform: rotate(90deg);
+    background-color: #fff;
+  }
+
+  #burger:checked~.nav-menu {
+    visibility: visible;
+    right: 0;
+  }
+
+  .menu-btn>span,
+  .menu-btn>span::before,
+  .menu-btn>span::after {
+    transition-duration: .15s;
+  }
+
+  .nav-menu {
+    transition-duration: .15s;
+  }
+
+  .nav-menu-link {
+    transition-duration: .15s;
+  }
+}
+
+@media (max-width: 480px) {
+  body {
+    font-size: 22px;
+  }
+
+  h1 {
+    font-size: 32px;
+  }
+
+  h2 {
+    font-size: 28px;
+  }
+
+  .header {
+    padding-top: 10px;
+  }
+
+  section[class] {
+    padding: 20px 0;
+  }
+
+  section[class~='gal'] {
+    padding: 0;
+  }
+
+  #burger:checked~.menu-btn {
+    top: 30px;
+  }
+
+  .banner {
+    align-items: flex-start;
+    min-height: 100vh;
+    height: 100%;
+  }
+
+  .banner .container {
+    margin-top: 100px;
+  }
+
+  .banner-img-container {
+    width: 75%;
+  }
+
+  .banner-text .description-text {
+    margin-top: 20px;
+  }
+
+  .banner-text h1 {
+    margin-bottom: 20px;
+  }
+
+  .banner-button {
+    margin-top: 40px;
+    font-size: 14px;
+    padding: 20px 48px;
+  }
+
+  .project-link {
+    width: 100%;
+    margin: 15px 0;
+  }
+
+  .project-link+.project-link {
+    margin-left: 0;
+  }
+
+  .project-link:last-child {
+    margin-right: 0;
+  }
+
+  .project-link:nth-child(odd) {
+    text-align: left;
+  }
+
+  .project-link:nth-child(even) {
+    text-align: right;
+    display: flex;
+    flex-direction: row-reverse;
+    justify-content: flex-start;
+  }
+
+  .project-text:nth-child(even) {
+    margin-left: 0;
+    margin-right: 5px;
+  }
+
+  .skill .container {
+    flex-direction: column-reverse;
+  }
+
+  .skill-img {
+    width: 100%;
+  }
+
+  .skill-box {
+    width: 100%;
+  }
+
+  .icon-play-button {
+    font-size: 2em;
+  }
+
+  .gallery-item {
+    width: 50%;
+    padding-top: 50%;
+  }
+
+  .gallery-block a:nth-child(3) {
+    order: 2;
+  }
+
+  .gallery-block a:nth-child(4) {
+    order: 1;
+  }
+
+  .gallery-block a:nth-child(5) {
+    order: 4;
+  }
+
+  .gallery-block a:nth-child(6) {
+    order: 3;
+  }
+
+  .gallery-block a:nth-child(7) {
+    order: 5;
+  }
+
+  .gallery-block a:nth-child(8) {
+    order: 6;
+  }
+
+  .client-item {
+    width: 100%;
+    max-width: 100%;
+    padding-top: 25%;
+  }
+
+  .client-item+.client-item {
+    margin-top: 35px;
+  }
+
+  .footer {
+    padding: 0;
+  }
+
+  .footer .container {
+    flex-direction: column-reverse;
+  }
+
+  .my-data {
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+    width: 100%;
+    margin-top: 35px;
+    padding: 0;
+  }
+
+  .my-data h3 {
+    margin: 10px;
+  }
+
+  .my-data p {
+    margin: 0;
+    vertical-align: bottom;
+  }
+
+  .icon-social {
+    font-size: 1.5em;
+  }
+}

+ 324 - 0
00/src/App.js

@@ -0,0 +1,324 @@
+import logo from './logo.svg';
+import './App.css';
+import './iconfonts.css';
+
+// body
+const Body = ({ children }) =>
+  <div class="wrapper">
+    {children}
+  </div>
+
+// container общий
+const Container = ({ children }) =>
+  <div class="container">
+    {children}
+  </div>
+
+// header
+const Header = ({ children }) =>
+  <header class="header">
+    <Container>
+      {children}
+    </Container>
+  </header>
+
+const Logo = ({ imgurl, logourl }) =>
+  <div class="logo">
+    <a href={logourl}>
+      <img src={imgurl} alt="logo" />
+    </a>
+  </div>
+
+const NavMenu = ({ children }) =>
+  <nav class="nav">
+    {children}
+  </nav>
+
+const NavMenuList = ({ children }) =>
+  <ul class="nav-menu">
+    {children}
+  </ul>
+
+const NavItem = ({ children, url }) =>
+  <li class="nav-items">
+    <a href={url} title={children} class="nav-menu-link">{children}</a>
+  </li>
+
+const BurgerMenu = () =>
+  <>
+    <input id="burger" type="checkbox" />
+    <label class="menu-btn" for="burger">
+      <span></span>
+    </label>
+  </>
+
+// построение main
+const Main = ({ children }) =>
+  <main>
+    {children}
+  </main>
+
+// Banner
+const SectionBanner = ({ children }) =>
+  <section class="banner">
+    <Container>
+      {children}
+    </Container>
+  </section>
+
+const BannerImg = ({ imgurl, imgalt }) =>
+  <div class="banner-img">
+    <div class="banner-img-container">
+      <img src={imgurl} alt={imgalt} />
+    </div>
+  </div>
+
+const BannerText = ({ children, title, url, anchor }) =>
+  <div class="banner-text">
+    <div class="description-text">
+      <h1>{title}</h1>
+      <p>{children}</p>
+      <a href={url} class="banner-button">
+        {anchor}
+      </a>
+    </div>
+  </div>
+
+// About me
+const SectionAboutMe = ({ children, title }) =>
+  <section class="about-me" id="about-me">
+    <Container>
+      <div class="description-text">
+        <h2>{title}</h2>
+        <p>{children}</p>
+      </div>
+    </Container>
+  </section>
+
+// Project
+const SectionProject = ({ children }) =>
+  <section class="project" id="project">
+    <Container>
+      {children}
+    </Container>
+  </section>
+
+const ProjectLink = ({ title, description, url }) =>
+  <a href={url} class="project-link">
+    <i class="icon-project"></i>
+    <div class="project-text">
+      <h3>{title}</h3>
+      <span>{description}</span>
+    </div>
+  </a>
+
+// Skill
+const SectionSkill = ({ children }) =>
+  <section class="skill">
+    <Container>
+      {children}
+    </Container>
+  </section>
+
+const SkillBox = ({ children, title }) =>
+  <div class="skill-box">
+    <h2>{title}</h2>
+    <div class="load-scale">
+      {children}
+    </div>
+  </div>
+
+const SkillItem = ({ skill }) =>
+  <div class="skill-item">
+    <span class="skill-title">{skill}</span>
+    <div class="skill-load-skale">
+      <div class="skill-load-progress"></div>
+    </div>
+  </div>
+
+const SkillImg = ({ imgurl, imgalt }) =>
+  <div class="skill-img">
+    <img src={imgurl} alt={imgalt} />
+  </div>
+
+// Work
+const SectionWork = ({ children }) =>
+  <section class="work" id="my-work">
+    <Container>
+      {children}
+    </Container>
+  </section>
+
+const DescriptionText = ({ children, title }) =>
+  <div class="description-text">
+    <h2>{title}</h2>
+    <p class="work-text-block">{children}</p>
+  </div>
+
+const WorkImg = ({ imgurl, imgalt }) =>
+  <div class="work-img">
+    <img class="work-video" src={imgurl} alt={imgalt} />
+    <i class="icon-play-button"></i>
+  </div>
+
+// Gallery
+const SectionGallery = ({ children }) =>
+  <section class="gallery" id="gallery">
+    <div class="gallery-block">
+      {children}
+    </div>
+  </section>
+
+const GalleryItem = ({ children, className, url = "#" }) =>
+  <a href={url} class={`gallery-item ${className}`}>{children}</a>
+
+const GalleryItemFirst = () =>
+  <GalleryItem className="gallery-item-first">
+    <span class="gallery-item-hover">
+      <i class="icon-view"></i>
+    </span>
+  </GalleryItem>
+
+const GalleryItemSecond = () =>
+  <GalleryItem className="gallery-item-second" >
+    <span class="gallery-item-hover">
+      <i class="icon-view"></i>
+    </span>
+  </GalleryItem >
+
+// Client
+const SectionClient = ({ children }) =>
+  <section class="client">
+    <Container>
+      {children}
+    </Container>
+  </section>
+
+const ClientItem = ({ imgurl }) =>
+  <a href={imgurl} target="_blank" class="client-item"></a>
+
+// Feedback
+const SectionFeedback = ({ children }) =>
+  <section class="feedback" id="feedback">
+    <Container>
+      {children}
+    </Container>
+  </section>
+
+const FeedbackForm = ({ name, email, message, title }) =>
+  <form class="feedback-form" action="message_sended">
+    <input class="feedback-form-name" type="text" name="user_name" id="name" placeholder={name} />
+    <input class="feedback-form-name" type="text" name="user_email" id="email" placeholder={email} />
+    <textarea class="feedback-form-name" name="user_massage" id="msg" placeholder={message}></textarea>
+    <button type="submit" class="feedback-button">{title}</button>
+  </form>
+
+// footer
+const Footer = ({ children }) =>
+  <footer class="footer">
+    <Container>
+      {children}
+    </Container>
+  </footer>
+
+const MyData = ({ title, data }) =>
+  <div class="my-data">
+    <h3>{title}</h3>
+    <span>{data}</span>
+  </div>
+
+const SocialGroup = ({ children }) =>
+  <div class="social-group">
+    {children}
+  </div>
+
+const SocialItem = ({ url }) =>
+  <a href={url} target="_blank" class="social">
+    <i class="icon-social"></i>
+  </a>
+
+
+function App() {
+  return (
+    <Body>
+      <Header>
+        <Logo imgurl="img/logo.png" logourl="#" />
+        <NavMenu>
+          <BurgerMenu />
+          <NavMenuList>
+            <NavItem url="#">главная</NavItem>
+            <NavItem url="#about-me">об авторе</NavItem>
+            <NavItem url="#project">работы</NavItem>
+            <NavItem url="#my-work">процесс</NavItem>
+            <NavItem url="#feedback">контакты</NavItem>
+          </NavMenuList>
+        </NavMenu>
+      </Header>
+      <Main>
+        <SectionBanner>
+          <BannerImg imgurl="img/pc-top.png" imgalt="Banner" />
+          <BannerText title="Дизайн и верстка" url="#feedback" anchor="написать мне">
+            Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне. Lorem Isum является стандартной "рыбой" для текстов на латинице с начала XVI века.
+          </BannerText>
+        </SectionBanner>
+        <SectionAboutMe title="Обо мне">
+          Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне. Lorem Ipsum является стандартной "рыбой" для текстов на латинице с начала XVI века.
+        </SectionAboutMe>
+        <SectionProject>
+          <ProjectLink title="40+" description="проектов" url="#gallery" />
+          <ProjectLink title="40+" description="проектов" url="#gallery" />
+          <ProjectLink title="40+" description="проектов" url="#gallery" />
+          <ProjectLink title="40+" description="проектов" url="#gallery" />
+          <ProjectLink title="40+" description="проектов" url="#gallery" />
+          <ProjectLink title="40+" description="проектов" url="#gallery" />
+        </SectionProject>
+        <SectionSkill>
+          <SkillBox title="Мои навыки">
+            <SkillItem skill="Adobe Photoshop" />
+            <SkillItem skill="Adobe Photoshop" />
+            <SkillItem skill="Adobe Photoshop" />
+          </SkillBox>
+          <SkillImg imgurl="img/me.png" imgalt="My_photo" />
+        </SectionSkill>
+        <SectionWork>
+          <DescriptionText title="Как я работаю">
+            Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне. Lorem Ipsum является стандартной "рыбой" для текстов на латинице с начала XVI века.
+          </DescriptionText>
+          <WorkImg imgurl="img/video.png" imgalt="work" />
+        </SectionWork>
+        <SectionGallery>
+          <GalleryItemFirst />
+          <GalleryItemSecond />
+          <GalleryItemFirst />
+          <GalleryItemSecond />
+          <GalleryItemSecond />
+          <GalleryItemFirst />
+          <GalleryItemSecond />
+          <GalleryItemFirst />
+        </SectionGallery>
+        <SectionClient>
+          <ClientItem imgurl="https://www.microsoft.com" />
+          <ClientItem imgurl="https://www.microsoft.com" />
+          <ClientItem imgurl="https://www.microsoft.com" />
+          <ClientItem imgurl="https://www.microsoft.com" />
+        </SectionClient>
+        <SectionFeedback>
+          <DescriptionText title="Хотите веб-сайт?">
+            Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне. Lorem Ipsum является стандартной "рыбой" для текстов на латинице с начала XVI века.
+          </DescriptionText>
+          <FeedbackForm name="Ваше имя" email="Ваш e-mail" message="Сообщение" title="отправить" />
+        </SectionFeedback>
+      </Main>
+      <Footer>
+        <MyData title="Иванов Иван" data="(c) 2018. Все права защищены." />
+        <SocialGroup>
+          <SocialItem url="https://vk.com" />
+          <SocialItem url="https://vk.com" />
+          <SocialItem url="https://vk.com" />
+        </SocialGroup>
+      </Footer>
+    </Body>
+  );
+}
+
+export default App;

+ 8 - 0
00/src/App.test.js

@@ -0,0 +1,8 @@
+import { render, screen } from '@testing-library/react';
+import App from './App';
+
+test('renders learn react link', () => {
+  render(<App />);
+  const linkElement = screen.getByText(/learn react/i);
+  expect(linkElement).toBeInTheDocument();
+});

BIN
00/src/fonts/icomoon.eot


ファイルの差分が大きいため隠しています
+ 14 - 0
00/src/fonts/icomoon.svg


BIN
00/src/fonts/icomoon.ttf


BIN
00/src/fonts/icomoon.woff


+ 43 - 0
00/src/iconfonts.css

@@ -0,0 +1,43 @@
+@font-face {
+    font-family: 'icomoon';
+    src: url('fonts/icomoon.eot?7a2zcz');
+    src: url('fonts/icomoon.eot?7a2zcz#iefix') format('embedded-opentype'),
+        url('fonts/icomoon.ttf?7a2zcz') format('truetype'),
+        url('fonts/icomoon.woff?7a2zcz') format('woff'),
+        url('fonts/icomoon.svg?7a2zcz#icomoon') format('svg');
+    font-weight: normal;
+    font-style: normal;
+    font-display: block;
+}
+
+[class^="icon-"],
+[class*=" icon-"] {
+    /* use !important to prevent issues with browser extensions that change fonts */
+    font-family: 'icomoon' !important;
+    speak: never;
+    font-style: normal;
+    font-weight: normal;
+    font-variant: normal;
+    text-transform: none;
+    line-height: 1;
+
+    /* Better Font Rendering =========== */
+    -webkit-font-smoothing: antialiased;
+    -moz-osx-font-smoothing: grayscale;
+}
+
+.icon-play-button:before {
+    content: "\e900";
+}
+
+.icon-project:before {
+    content: "\e901";
+}
+
+.icon-social:before {
+    content: "\e902";
+}
+
+.icon-view:before {
+    content: "\e903";
+}

BIN
00/src/img/client.png


BIN
00/src/img/gallery-1.png


BIN
00/src/img/gallery-2.png


BIN
00/src/img/logo.png


BIN
00/src/img/me.png


BIN
00/src/img/pc-top.png


BIN
00/src/img/video.png


+ 13 - 0
00/src/index.css

@@ -0,0 +1,13 @@
+body {
+  margin: 0;
+  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+    sans-serif;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+code {
+  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+    monospace;
+}

+ 17 - 0
00/src/index.js

@@ -0,0 +1,17 @@
+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(
+  <React.StrictMode>
+    <App />
+  </React.StrictMode>
+);
+
+// If you want to start measuring performance in your app, pass a function
+// to log results (for example: reportWebVitals(console.log))
+// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
+reportWebVitals();

ファイルの差分が大きいため隠しています
+ 1 - 0
00/src/logo.svg


+ 13 - 0
00/src/reportWebVitals.js

@@ -0,0 +1,13 @@
+const reportWebVitals = onPerfEntry => {
+  if (onPerfEntry && onPerfEntry instanceof Function) {
+    import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
+      getCLS(onPerfEntry);
+      getFID(onPerfEntry);
+      getFCP(onPerfEntry);
+      getLCP(onPerfEntry);
+      getTTFB(onPerfEntry);
+    });
+  }
+};
+
+export default reportWebVitals;

+ 5 - 0
00/src/setupTests.js

@@ -0,0 +1,5 @@
+// jest-dom adds custom jest matchers for asserting on DOM nodes.
+// allows you to do things like:
+// expect(element).toHaveTextContent(/react/i)
+// learn more: https://github.com/testing-library/jest-dom
+import '@testing-library/jest-dom';