首页头部初步

This commit is contained in:
禺狨
2023-03-23 18:20:42 +08:00
parent d72e35ed67
commit 3d38212ed9
7 changed files with 71 additions and 1 deletions

View File

@@ -1,5 +1,29 @@
import styles from "./index.module.scss";
import myLesoon from "../../assets/images/commen/icon-mylesoon.png";
import studyTime from "../../assets/images/commen/icon-studytime.png";
const IndexPage = () => {
return <></>;
return (
<>
<div className={styles["top-cont"]}>
<div className={styles["top-item"]}>
<div className={styles["title"]}>
<img className={styles["icon"]} src={myLesoon} />
<span></span>
</div>
<div className={styles["info"]}></div>
</div>
<div className={styles["top-item"]}>
<div className={styles["title"]}>
<img className={styles["icon"]} src={studyTime} />
<span></span>
</div>
<div className={styles["info"]}></div>
</div>
</div>
</>
);
};
export default IndexPage;