diff --git a/src/Components/HomePage/index.jsx b/src/Components/HomePage/index.jsx index d9c51dc..015f3b7 100644 --- a/src/Components/HomePage/index.jsx +++ b/src/Components/HomePage/index.jsx @@ -28,7 +28,28 @@ const HomePage = () => { return ( <>
- +
+
МУЗА
+
+
Платформа для проведения well-being мероприятий
+
+ +
+
+ +
+
+ + +
+
+ +
+ diff --git a/src/Components/HomePage/style.module.scss b/src/Components/HomePage/style.module.scss index 445b0e9..6d59f39 100644 --- a/src/Components/HomePage/style.module.scss +++ b/src/Components/HomePage/style.module.scss @@ -1,6 +1,74 @@ -.title { - font-size: 100px; + +.muza { + &__container { + height: 700px; + display: flex; + align-items: center; + flex-direction: column; + width: 100%; + } + + &__title { + margin-top: 150px; + color: #000; + font-family: Montserrat; + font-size: 143.016px; + font-style: normal; + font-weight: 700; + line-height: normal; + text-align: left; + display: flex; + width: 90%; + + } + &__descr { + &_container { + display: flex; + justify-content: flex-end; + } + margin-top: 50px; + margin-left: 70px; + color: #000; + font-family: Montserrat; + font-size: 46px; + font-style: normal; + font-weight: 400; + line-height: normal; + text-align: left; + display: flex; + width: 60%; + + } } - +.meeting { + &__container { + height: 1400px; + } + &__inputs { + width: 90%; + height: 46px; + border-radius: 10px; + border: 1px solid #000; + padding-left: 40px; + } + +} +.container { + display: flex; + justify-content: center; + +} +.select { + margin-right: 50px; + height: 35px; + border-radius: 10px; + border: 1px solid var(--gray_stroke, #D0D2D8); + width: 200px; + &__container { + display: flex; + width: 93%; + margin-top: 30px; + } + } \ No newline at end of file diff --git a/src/Components/TableMeets/TableMeets.jsx b/src/Components/TableMeets/TableMeets.jsx index a6a35a1..6c5d48f 100644 --- a/src/Components/TableMeets/TableMeets.jsx +++ b/src/Components/TableMeets/TableMeets.jsx @@ -1,7 +1,7 @@ import React, { useState } from 'react'; import styles from './style.module.scss'; -import logo from '../../img/homePage/downArrow.png'; -import { style } from '@mui/system'; +import arrow from '../../img/homePage/downArrow.png'; + const TableMeets = ({ events }) => { const [isOpenMap, setIsOpenMap] = useState({}); @@ -16,12 +16,12 @@ const TableMeets = ({ events }) => {