Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
1b6128029e | |||
bd7de5dee4 |
32
src/Components/HomePage/index.jsx
Normal file
32
src/Components/HomePage/index.jsx
Normal file
@ -0,0 +1,32 @@
|
||||
import Header from "../Header";
|
||||
import styles from "./style.module.scss";
|
||||
import arrow from '../../img/homePage/downArrow.png';
|
||||
|
||||
|
||||
const HomePage = () => {
|
||||
return (
|
||||
<>
|
||||
<Header></Header>
|
||||
|
||||
|
||||
<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>
|
||||
</>
|
||||
|
||||
|
||||
)
|
||||
}
|
||||
export default HomePage;
|
Loading…
x
Reference in New Issue
Block a user