diff --git a/src/components/Home/sections/Description.module.scss b/src/components/Home/sections/Description.module.scss
index 050b6a89..34d8e2e6 100644
--- a/src/components/Home/sections/Description.module.scss
+++ b/src/components/Home/sections/Description.module.scss
@@ -72,17 +72,15 @@
border: 1px solid #5ab424;
background-color: white;
margin-right: 60px;
- & a {
- text-decoration: none;
- color: #a0a0a0;
- font-family: "GT Eesti Pro Display";
- font-size: 18px;
- font-weight: 600;
- font-style: normal;
- letter-spacing: normal;
- line-height: normal;
- text-align: left;
- }
+ color: #a0a0a0;
+ font-family: "GT Eesti Pro Display";
+ font-size: 18px;
+ font-weight: 600;
+ font-style: normal;
+ letter-spacing: normal;
+ line-height: normal;
+ text-align: center;
+
}
}
&__box {
diff --git a/src/components/Home/sections/Search.js b/src/components/Home/sections/Search.js
new file mode 100644
index 00000000..b7f32a0b
--- /dev/null
+++ b/src/components/Home/sections/Search.js
@@ -0,0 +1,23 @@
+import React from 'react';
+import style from './Search.module.scss';
+
+const Search = () => {
+ return (
+
+
+
+
+
Найти специалиста по навыкам
+
+
+
+
+
+
+ );
+};
+
+export default Search;
diff --git a/src/components/Home/sections/Search.module.scss b/src/components/Home/sections/Search.module.scss
new file mode 100644
index 00000000..dde648d5
--- /dev/null
+++ b/src/components/Home/sections/Search.module.scss
@@ -0,0 +1,46 @@
+.search {
+ margin-top: 40px;
+ & h2 {
+ font-family: "GT Eesti Pro Display";
+ font-size: 24px;
+ font-weight: 700;
+ font-style: normal;
+ letter-spacing: normal;
+ line-height: normal;
+ text-align: center;
+ margin-bottom: 40px;
+ }
+ & form {
+ position: relative;
+ width: 100%;
+ height: 60px;
+ border: 1px solid whitesmoke;
+ & input {
+ width: 100%;
+ height: 100%;
+ border: none;
+ margin-left: 160px;
+ font-size: 18px;
+ }
+ & input:focus,
+ & input:active {
+ outline: none;
+ }
+ & button {
+ position: absolute;
+ top: 15%;
+ left: 1%;
+ width: 131px;
+ height: 40px;
+ border-radius: 10px;
+ background-color: #e8e8e8;
+ border: none;
+ font-family: "GT Eesti Pro Display";
+ font-size: 18px;
+ font-weight: 400;
+ font-style: normal;
+ letter-spacing: normal;
+ text-align: center;
+ }
+ }
+}
\ No newline at end of file