Update index.jsx

This commit is contained in:
Sevka 2023-12-22 18:48:38 +03:00
parent 759adc8506
commit bd7de5dee4

View File

@ -1,5 +1,6 @@
import Header from "../Header";
import styles from "./style.module.scss";
import arrow from '../../img/homePage/downArrow.png';
const HomePage = () => {
@ -7,7 +8,22 @@ const HomePage = () => {
<>
<Header></Header>
<section></section>
<section className={styles.meeting__container}>
<div className={styles.meeting__cards}>
<div className={styles.meeting__card}>
<div className={styles.data__container}>
<div className={styles.data__time}>01.01.1990</div>
<div className={styles.data}>00:00</div>
</div>
<div className={styles.meeting__name}>
Название мероприятия
</div>
<div className={styles.meeting__downArrow}><img src={arrow} alt="arrow"></img></div>
<div className={styles.blackLine}></div>
</div>
</div>
</section>
</>