Merge branch 'main' of https://git.zetcraft.ru/cevka/OgeetoCaseCyberGarden
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| #root { | ||||
|   max-width: 1280px; | ||||
|   width: 79%; | ||||
|   margin: 0 auto; | ||||
|   padding: 2rem; | ||||
|   text-align: center; | ||||
|   | ||||
| @@ -5,7 +5,7 @@ import FetchUtils from './components/fetchUtils/FetchUtils.jsx' | ||||
| import { BrowserRouter, Routes, Route } from "react-router-dom"; | ||||
| import BeingPage from "./Components/BeingPage/index.jsx"; | ||||
| import HomePage from "./Components/HomePage/index.jsx"; | ||||
|  | ||||
| import MeetPage from "./Components/MeetPage/index.jsx"; | ||||
|  | ||||
|  | ||||
|  | ||||
| @@ -20,6 +20,7 @@ function App() { | ||||
|         <Routes> | ||||
|           <Route path="/being" element={<BeingPage />}/> | ||||
|           <Route path="/" element={<HomePage />}/> | ||||
|           <Route path="/firstMeet" element={<MeetPage />}/> | ||||
|         </Routes> | ||||
|       </BrowserRouter> | ||||
|     </> | ||||
|   | ||||
							
								
								
									
										24
									
								
								src/Components/Card/index.jsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								src/Components/Card/index.jsx
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,24 @@ | ||||
| import './style.module.scss'; | ||||
|  | ||||
|  | ||||
|  | ||||
|  | ||||
| const Card = () => { | ||||
|  | ||||
|  | ||||
|  | ||||
|     return ( | ||||
|         <> | ||||
|             <div className='event_card'> | ||||
|                 <div className="event-card__photo" /> | ||||
|                 <div className="taggs"> | ||||
|                 <div className='tagged'>Психология</div> | ||||
|                 <div className="feautures">Предстоящее</div> | ||||
|                 </div> | ||||
|                 <h4 className="event-card__title">Интерактивная лекция «Управление инжиниринговыми проектами на базе вуза»</h4> | ||||
|                 <p className="event-card__date">22 декабря, с 10:00 до 22:00 по Московскому времени</p> | ||||
|             </div> | ||||
|         </> | ||||
|     ) | ||||
| } | ||||
| export default Card; | ||||
							
								
								
									
										74
									
								
								src/Components/Card/style.module.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										74
									
								
								src/Components/Card/style.module.scss
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,74 @@ | ||||
| .event_card { | ||||
|     width: 292px; | ||||
|     height: 626px; | ||||
|     flex-shrink: 0; | ||||
|     margin-top: 100px; | ||||
| } | ||||
|  | ||||
| .wrapp { | ||||
|     display: flex; | ||||
|     justify-content: flex-start; | ||||
|     /* max-width: 1521px; */ | ||||
| } | ||||
|  | ||||
| :root { | ||||
|     text-align: left; | ||||
| } | ||||
|  | ||||
| .event-card_date { | ||||
|     color: var(--gray_text, #888); | ||||
|  | ||||
| /* title */ | ||||
| font-family: Montserrat; | ||||
| font-size: 22px; | ||||
| font-style: normal; | ||||
| font-weight: 400; | ||||
| line-height: normal; | ||||
| } | ||||
|  | ||||
| .event-card__photo { | ||||
|     width: 292px; | ||||
|     height: 340px; | ||||
|     flex-shrink: 0; | ||||
| background: #D9D9D9; | ||||
| margin-bottom: 26px; | ||||
| } | ||||
|  | ||||
| .event-card_title { | ||||
|     color: #000; | ||||
|  | ||||
|     font-family: Montserrat; | ||||
|     font-size: 24px; | ||||
|     font-style: normal; | ||||
|     font-weight: 400; | ||||
|     line-height: normal; | ||||
| } | ||||
| .feautures { | ||||
|      | ||||
| display: flex; | ||||
| justify-content: center; | ||||
| font-family: Montserrat; | ||||
| align-items: center; | ||||
| font-size: 8px; | ||||
| font-style: normal; | ||||
| font-weight: 400; | ||||
| line-height: normal; | ||||
| border-radius: 10px; | ||||
| background: #E7FFD2; | ||||
| height: 15px; | ||||
| padding: 10px; | ||||
| } | ||||
|  | ||||
| .tagged { | ||||
|     display: inline-flex; | ||||
| padding: 10px; | ||||
| justify-content: center; | ||||
| align-items: center; | ||||
| gap: 10px; | ||||
| border-radius: 10px; | ||||
| border: 1px solid var(--gray_text, #888); | ||||
| } | ||||
| .taggs { | ||||
|     display: flex; | ||||
|     justify-content: space-between; | ||||
| } | ||||
| @@ -1,6 +1,8 @@ | ||||
|  | ||||
|  | ||||
|  | ||||
| .container { | ||||
|     width: 100%; | ||||
| } | ||||
| .muza { | ||||
|     &__container { | ||||
|         height: 700px; | ||||
| @@ -75,7 +77,7 @@ | ||||
| .NewContainer { | ||||
|     display: flex; | ||||
|     justify-content: flex-end; | ||||
|     margin-top: 40px; | ||||
|     margin-top: 30px; | ||||
| } | ||||
| .search_container { | ||||
|     display: flex; | ||||
|   | ||||
							
								
								
									
										75
									
								
								src/Components/MeetPage/index.jsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										75
									
								
								src/Components/MeetPage/index.jsx
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,75 @@ | ||||
| import Header from "../Header"; | ||||
| import styles from './style.module.scss'; | ||||
| import clock from '../../img/MeetPage/Clock.png'; | ||||
| import globe from '../../img/MeetPage/Globe.png'; | ||||
| import avatar from '../../img/MeetPage/avatar.png'; | ||||
| import { style } from "@mui/system"; | ||||
| import Card from "../Card"; | ||||
| import Grid from '@mui/material/Grid'; | ||||
| import Box from '@mui/material/Box'; | ||||
|  | ||||
| const MeetPage = () => { | ||||
|  | ||||
|     return ( | ||||
|         <> | ||||
|             <Header></Header> | ||||
|  | ||||
|             <section className={styles.meets}> | ||||
|                 <div className={styles.meets__mainInfo_container}> | ||||
|                     <span className={styles.meets__mainInfo_descr}>Интерактивная лекция «Управление инжиниринговыми проектами на базе вуза»</span> | ||||
|                     <span className={styles.meets__mainInfo_type}>Психология</span> | ||||
|                     <div className={styles.meets__mainInfo_status}><img className={styles.meets__mainInfo_status_img} src={clock} alt="clock"></img> <span>Онлайн</span> </div> | ||||
|                     <div className={styles.meets__mainInfo_time}><img className={styles.meets__mainInfo_status_img} src={globe} alt="globe"></img> <span>22 декабря, с 10:00 до 22:00 по Московскому времени</span> </div> | ||||
|                 </div> | ||||
|                 <div className={styles.meets__img}></div> | ||||
|                 | ||||
|             </section> | ||||
|             <div className={styles.meets__otziv_container}> | ||||
|                 <div className={styles.meets__otziv}> | ||||
|                     <span className={styles.meets__otziv_title}>Отзывы</span> | ||||
|                     Оставьте первый отзыв | ||||
|                 </div> | ||||
|             </div> | ||||
|             <section className={styles.aboutMeet}> | ||||
|                 <div className={styles.aboutMeet__title}>О мероприятии</div> | ||||
|                 <div className={styles.aboutMeet__descr}>Известным спикером будут продемонстрированы основные механизмы психологического воздействия в политике, а также особенности восприятия общественно-политической информации. Слушатели смогут узнать, как следует противостоять манипулятивному воздействию, фейковой информации, а также порассуждать о том, возможно ли существование мира без обмана.</div> | ||||
|             </section> | ||||
|             <section className={styles.expert}> | ||||
|                 <div className={styles.expert__title}>Специалист</div> | ||||
|                 <div className={styles.expert__container}> | ||||
|                     <div className={styles.expert__img_container}><img className={styles.expert__img} src={avatar} alt="avatar"></img></div> | ||||
|                     <div className={styles.expert__descr_container}> | ||||
|                         <div className={styles.expert__descr_fullname}>Иванов Иван Иванович</div> | ||||
|                         <div className={styles.expert__descr_speciality}>Психолог, таролог</div> | ||||
|                         <div className={styles.expert__descr_phone}>+7 (888) 888 - 88 - 88</div> | ||||
|                         <a href="#" className={styles.expert__descr_email}>exampl@ya.ru</a> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </section> | ||||
|             <section className={styles.someMeetings}> | ||||
|             <div className={styles.someMeetings__title}>Еще мероприятия</div> | ||||
|             <Box sx={{ flexGrow: 1 }}> | ||||
|                 <Grid container spacing={1}> | ||||
|                 <Grid item xs={6}  md={4} lg={3} > | ||||
|                     <Card></Card> | ||||
|                 </Grid> | ||||
|                 <Grid item xs={6}  md={4} lg={3} > | ||||
|                     <Card></Card> | ||||
|                 </Grid> | ||||
|                 <Grid item xs={6} md={4} lg={3} > | ||||
|                     <Card></Card> | ||||
|                 </Grid> | ||||
|                 <Grid item xs={6}  md={4} lg={3} > | ||||
|                     <Card></Card> | ||||
|                 </Grid> | ||||
|                  | ||||
|                 </Grid> | ||||
|             </Box> | ||||
|             </section> | ||||
|         </> | ||||
|          | ||||
|     ) | ||||
|  | ||||
|  | ||||
| } | ||||
| export default MeetPage; | ||||
							
								
								
									
										220
									
								
								src/Components/MeetPage/style.module.scss
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										220
									
								
								src/Components/MeetPage/style.module.scss
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,220 @@ | ||||
| .meets { | ||||
|     margin-top: 150px; | ||||
|     width: 100%; | ||||
|     display: flex; | ||||
|     justify-content: space-between; | ||||
|     &__img { | ||||
|         width: 44%; | ||||
|         height: 300px; | ||||
|         background-color: #D9D9D9; | ||||
|     } | ||||
|     &__mainInfo { | ||||
|         &_container { | ||||
|             width: 50%; | ||||
|             display: flex; | ||||
|             flex-direction: column; | ||||
|             align-content: start; | ||||
|         } | ||||
|         &_descr { | ||||
|             color: #000; | ||||
|             font-family: Montserrat; | ||||
|             font-size: 30px; | ||||
|             font-style: normal; | ||||
|             font-weight: 600; | ||||
|             line-height: normal; | ||||
|             text-align: left; | ||||
|         } | ||||
|         &_type { | ||||
|             display: flex; | ||||
|             margin-top: 25px; | ||||
|             border-radius: 10px; | ||||
|             border: 1px solid var(--gray_text, #888); | ||||
|             width: 110px; | ||||
|             height: 35px; | ||||
|             justify-content: center; | ||||
|             align-items: center; | ||||
|             color: var(--gray_text, #888); | ||||
|             font-family: Montserrat; | ||||
|             font-size: 15px; | ||||
|             font-style: normal; | ||||
|             font-weight: 400; | ||||
|             line-height: normal; | ||||
|         } | ||||
|         &_status { | ||||
|             margin-top: 40px; | ||||
|  | ||||
|             display: flex; | ||||
|         } | ||||
|         &_time { | ||||
|             margin-top: 40px; | ||||
|     | ||||
|             display: flex; | ||||
|         } | ||||
|         &_status_img { | ||||
|             height: 26px; | ||||
|             width: 30px; | ||||
|             margin-right: 12px; | ||||
|         } | ||||
|     } | ||||
|     &__otziv { | ||||
|         position: relative; | ||||
|         display: flex; | ||||
|         justify-content: center; | ||||
|         align-items: center; | ||||
|         height: 300px; | ||||
|         width: 44%; | ||||
|         border: 1px solid var(--gray_stroke, #D0D2D8); | ||||
|         margin-top: 50px; | ||||
|         color: #000; | ||||
|         font-family: Montserrat; | ||||
|         font-size: 14px; | ||||
|         font-style: normal; | ||||
|         font-weight: 400; | ||||
|         line-height: normal; | ||||
|         &_title { | ||||
|             color: #000; | ||||
|             font-family: Montserrat; | ||||
|             font-size: 25px; | ||||
|             font-style: normal; | ||||
|             font-weight: 400; | ||||
|             line-height: normal; | ||||
|             position: absolute; | ||||
|             left: 10px; | ||||
|             top: 4px; | ||||
|         } | ||||
|         &_container { | ||||
|             display: flex; | ||||
|             justify-content: flex-end; | ||||
|         } | ||||
|     } | ||||
|      | ||||
| } | ||||
| .aboutMeet { | ||||
|  | ||||
|     display: flex; | ||||
|     flex-direction: column; | ||||
|     &__title { | ||||
|         display: flex; | ||||
|         color: #000; | ||||
|         font-family: Montserrat; | ||||
|         font-size: 56px; | ||||
|         font-style: normal; | ||||
|         font-weight: 400; | ||||
|         line-height: normal; | ||||
|     } | ||||
|     &__descr { | ||||
|         margin-top: 60px; | ||||
|         display: flex; | ||||
|         text-align: left; | ||||
|         color: rgba(0, 0, 0, 0.90); | ||||
|         font-family: Inter; | ||||
|         font-size: 24px; | ||||
|         font-style: normal; | ||||
|         font-weight: 400; | ||||
|         line-height: 110%; /* 27.6px */ | ||||
|     } | ||||
|  | ||||
| } | ||||
| .expert { | ||||
|  | ||||
|     display: flex; | ||||
|     flex-direction: column; | ||||
|     margin-top: 200px; | ||||
|     &__title { | ||||
|         display: flex; | ||||
|         color: #000; | ||||
|         font-family: Montserrat; | ||||
|         font-size: 56px; | ||||
|         font-style: normal; | ||||
|         font-weight: 400; | ||||
|         line-height: normal; | ||||
|     } | ||||
|     &__img { | ||||
|         border-radius: 10000px; | ||||
|     } | ||||
|     | ||||
|  | ||||
| } | ||||
| .expert { | ||||
|  | ||||
|  | ||||
|     &__container { | ||||
|         margin-top: 60px; | ||||
|         display: flex; | ||||
|  | ||||
|     } | ||||
|     &__img { | ||||
|         width: 200px; | ||||
|         height: 200px; | ||||
|         &_container { | ||||
|             margin-right: 50px; | ||||
|         } | ||||
|          | ||||
|     } | ||||
|     &__descr { | ||||
|          | ||||
|  | ||||
|  | ||||
|         &_container { | ||||
|             display: flex; | ||||
|             flex-direction: column; | ||||
|             text-align: left; | ||||
|  | ||||
|             justify-content: center; | ||||
|         } | ||||
|         &_fullname { | ||||
|             color: #000; | ||||
|             font-family: Montserrat; | ||||
|             font-size: 36px; | ||||
|             font-style: normal; | ||||
|             font-weight: 400; | ||||
|             line-height: normal; | ||||
|         } | ||||
|         &_speciality { | ||||
|             color: #000; | ||||
|             font-family: Montserrat; | ||||
|             font-size: 32px; | ||||
|             font-style: normal; | ||||
|             font-weight: 400; | ||||
|             line-height: normal; | ||||
|             margin-top: 6px; | ||||
|         } | ||||
|         &_phone { | ||||
|             color: #000; | ||||
|             font-family: Montserrat; | ||||
|             font-size: 22px; | ||||
|             font-style: normal; | ||||
|             font-weight: 400; | ||||
|             line-height: normal; | ||||
|             margin-top: 16px; | ||||
|         } | ||||
|         &_email { | ||||
|             color: #2C41FF; | ||||
|             font-family: Montserrat; | ||||
|             font-size: 22px; | ||||
|             font-style: normal; | ||||
|             font-weight: 400; | ||||
|             line-height: normal; | ||||
|             margin-top: 16px; | ||||
|         } | ||||
|     } | ||||
| } | ||||
| .someMeetings { | ||||
|  | ||||
|     display: flex; | ||||
|     flex-direction: column; | ||||
|     margin-top: 200px; | ||||
|     &__title { | ||||
|         display: flex; | ||||
|         color: #000; | ||||
|         font-family: Montserrat; | ||||
|         font-size: 56px; | ||||
|         font-style: normal; | ||||
|         font-weight: 400; | ||||
|         line-height: normal; | ||||
|     } | ||||
|  | ||||
| } | ||||
| .cards_container { | ||||
|     display: flex; | ||||
| } | ||||
| @@ -1 +1 @@ | ||||
| .muza__container{height:700px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%}.muza__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:-webkit-box;display:-ms-flexbox;display:flex;width:90%}.muza__descr{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:-webkit-box;display:-ms-flexbox;display:flex;width:60%}.muza__descr_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.meeting__container{height:1400px}.meeting__inputs{width:90%;height:46px;border-radius:10px;border:1px solid #000;padding-left:40px}.container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.select{margin-right:50px;height:35px;border-radius:10px;border:1px solid var(--gray_stroke, #D0D2D8);width:200px}.select__container{display:-webkit-box;display:-ms-flexbox;display:flex;width:93%;margin-top:30px}.NewContainer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;margin-top:40px}.search_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.search__descr{margin-right:25px}/*# sourceMappingURL=style.module.css.map */ | ||||
| .meets{margin-top:150px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.meets__img{width:44%;height:300px;background-color:#d9d9d9}.meets__mainInfo_container{width:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-ms-flex-line-pack:start;align-content:start}.meets__mainInfo_descr{color:#000;font-family:Montserrat;font-size:30px;font-style:normal;font-weight:600;line-height:normal;text-align:left}.meets__mainInfo_type{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:25px;border-radius:10px;border:1px solid var(--gray_text, #888);width:110px;height:35px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:var(--gray_text, #888);font-family:Montserrat;font-size:15px;font-style:normal;font-weight:400;line-height:normal}.meets__mainInfo_status{margin-top:40px;display:-webkit-box;display:-ms-flexbox;display:flex}.meets__mainInfo_time{margin-top:40px;display:-webkit-box;display:-ms-flexbox;display:flex}.meets__mainInfo_status_img{height:26px;width:30px;margin-right:12px}.meets__otziv{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:300px;width:44%;border:1px solid var(--gray_stroke, #D0D2D8);margin-top:50px;color:#000;font-family:Montserrat;font-size:14px;font-style:normal;font-weight:400;line-height:normal}.meets__otziv_title{color:#000;font-family:Montserrat;font-size:25px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:10px;top:4px}.meets__otziv_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.aboutMeet{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.aboutMeet__title{display:-webkit-box;display:-ms-flexbox;display:flex;color:#000;font-family:Montserrat;font-size:56px;font-style:normal;font-weight:400;line-height:normal}.aboutMeet__descr{margin-top:60px;display:-webkit-box;display:-ms-flexbox;display:flex;text-align:left;color:rgba(0,0,0,.9);font-family:Inter;font-size:24px;font-style:normal;font-weight:400;line-height:110%}.expert{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:200px}.expert__title{display:-webkit-box;display:-ms-flexbox;display:flex;color:#000;font-family:Montserrat;font-size:56px;font-style:normal;font-weight:400;line-height:normal}.expert__img{border-radius:10000px}.expert__container{margin-top:60px;display:-webkit-box;display:-ms-flexbox;display:flex}.expert__img{width:200px;height:200px}.expert__img_container{margin-right:50px}.expert__descr_container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;text-align:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.expert__descr_fullname{color:#000;font-family:Montserrat;font-size:36px;font-style:normal;font-weight:400;line-height:normal}.expert__descr_speciality{color:#000;font-family:Montserrat;font-size:32px;font-style:normal;font-weight:400;line-height:normal;margin-top:6px}.expert__descr_phone{color:#000;font-family:Montserrat;font-size:22px;font-style:normal;font-weight:400;line-height:normal;margin-top:16px}.expert__descr_email{color:#2c41ff;font-family:Montserrat;font-size:22px;font-style:normal;font-weight:400;line-height:normal;margin-top:16px}.someMeetings{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:200px}.someMeetings__title{display:-webkit-box;display:-ms-flexbox;display:flex;color:#000;font-family:Montserrat;font-size:56px;font-style:normal;font-weight:400;line-height:normal}.cards_container{display:-webkit-box;display:-ms-flexbox;display:flex}/*# sourceMappingURL=style.module.css.map */ | ||||
| @@ -1 +1 @@ | ||||
| {"version":3,"sources":["../HomePage/style.module.scss"],"names":[],"mappings":"AAII,iBACI,YAAA,CACA,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,wBAAA,CAAA,qBAAA,CAAA,kBAAA,CACA,2BAAA,CAAA,4BAAA,CAAA,yBAAA,CAAA,qBAAA,CACA,UAAA,CAGJ,aACI,gBAAA,CACA,UAAA,CACA,sBAAA,CACA,mBAAA,CACA,iBAAA,CACA,eAAA,CACA,kBAAA,CACA,eAAA,CACA,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,SAAA,CAGJ,aAKI,eAAA,CACA,gBAAA,CACA,UAAA,CACA,sBAAA,CACA,cAAA,CACA,iBAAA,CACA,eAAA,CACA,kBAAA,CACA,eAAA,CACA,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,SAAA,CAdA,uBACI,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,oBAAA,CAAA,iBAAA,CAAA,wBAAA,CAiBT,oBACC,aAAA,CAED,iBACK,SAAA,CACA,WAAA,CACA,kBAAA,CACA,qBAAA,CACA,iBAAA,CAIR,WACI,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,uBAAA,CAAA,oBAAA,CAAA,sBAAA,CAGJ,QACI,iBAAA,CACA,WAAA,CACA,kBAAA,CACA,4CAAA,CACA,WAAA,CACA,mBACI,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,SAAA,CACA,eAAA,CAGR,cACI,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,oBAAA,CAAA,iBAAA,CAAA,wBAAA,CACA,eAAA,CAEJ,kBACI,mBAAA,CAAA,mBAAA,CAAA,YAAA,CACA,wBAAA,CAAA,qBAAA,CAAA,kBAAA,CACA,uBAAA,CAAA,oBAAA,CAAA,sBAAA,CAEJ,eACI,iBAAA","file":"style.module.css"} | ||||
| {"version":3,"sources":["../MeetPage/style.module.scss"],"names":[],"mappings":"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","file":"style.module.css"} | ||||
| @@ -4,11 +4,7 @@ import styled from 'styled-components'; | ||||
| import { HttpApiMethods } from '../fetchUtils/FetchUtils'; | ||||
| import EditForm from '../post/PostForm'; | ||||
|  | ||||
| const Taged = styled.div({ | ||||
|     borderRadius: 10, | ||||
|     backgroundColor: 'gray', | ||||
|      | ||||
| }) | ||||
|    | ||||
|  | ||||
| const httpApiMethods = new HttpApiMethods() | ||||
|  | ||||
|   | ||||
							
								
								
									
										
											BIN
										
									
								
								src/img/MeetPage/Clock.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/img/MeetPage/Clock.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 581 B | 
							
								
								
									
										
											BIN
										
									
								
								src/img/MeetPage/Globe.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/img/MeetPage/Globe.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 819 B | 
							
								
								
									
										
											BIN
										
									
								
								src/img/MeetPage/avatar.png
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								src/img/MeetPage/avatar.png
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 52 KiB | 
		Reference in New Issue
	
	Block a user