Платформа для проведения well-being мероприятий
diff --git a/src/Components/HomePage/style.module.scss b/src/Components/HomePage/style.module.scss
index e3e3ef5..07e64eb 100644
--- a/src/Components/HomePage/style.module.scss
+++ b/src/Components/HomePage/style.module.scss
@@ -5,13 +5,19 @@
}
.muza {
&__container {
- height: 700px;
+ height: 780px;
display: flex;
align-items: center;
flex-direction: column;
width: 100%;
+ position: relative;
}
-
+ &_img {
+ position: absolute;
+ left: 0px;
+ top: 300px;
+ height: 480px;
+ }
&__title {
margin-top: 150px;
color: #000;
@@ -23,6 +29,7 @@
text-align: left;
display: flex;
width: 90%;
+ z-index: 10;
}
&__descr {
@@ -30,7 +37,7 @@
display: flex;
justify-content: flex-end;
}
- margin-top: 50px;
+ margin-top: 100px;
margin-left: 70px;
color: #000;
font-family: Montserrat;
@@ -41,7 +48,7 @@
text-align: left;
display: flex;
width: 60%;
-
+ z-index: 10;
}
}
.meeting {
diff --git a/src/Components/Menu/index.jsx b/src/Components/Menu/index.jsx
new file mode 100644
index 0000000..95c5190
--- /dev/null
+++ b/src/Components/Menu/index.jsx
@@ -0,0 +1,55 @@
+import * as React from 'react';
+import Button from '@mui/material/Button';
+import Menu from '@mui/material/Menu';
+import MenuItem from '@mui/material/MenuItem';
+import avatar from '../../img/headerImg/avatar.png'
+import { useNavigate } from "react-router-dom";;
+import styles from './style.module.scss';
+export default function BasicMenu() {
+ const [anchorEl, setAnchorEl] = React.useState(null);
+ const open = Boolean(anchorEl);
+ const handleClick = (event) => {
+ setAnchorEl(event.currentTarget);
+ };
+ const navigate = useNavigate();
+ const handleHome = () => {
+ navigate('/');
+ setAnchorEl(null);
+ }
+ const handleProfile = () => {
+ navigate('/profile');
+ setAnchorEl(null);
+ }
+ const handleAtchive = () => {
+ navigate('/achievements');
+ setAnchorEl(null);
+ }
+ const handleClose = () => {
+ setAnchorEl(null);
+ }
+ return (
+ <>
+

+
+
+ >
+ );
+}
diff --git a/src/Components/Menu/style.module.scss b/src/Components/Menu/style.module.scss
new file mode 100644
index 0000000..3615811
--- /dev/null
+++ b/src/Components/Menu/style.module.scss
@@ -0,0 +1,8 @@
+.header {
+ &_img {
+
+ width: 55px;
+ margin-right: 40px;
+ height: 55px;
+ }
+}
\ No newline at end of file
diff --git a/src/img/homePage/muza.png b/src/img/homePage/muza.png
new file mode 100644
index 0000000..f5ed239
Binary files /dev/null and b/src/img/homePage/muza.png differ