feat: 🎸 新增了一些页面
This commit is contained in:
19
src/pages/PublicCourses/index.css
Normal file
19
src/pages/PublicCourses/index.css
Normal file
@@ -0,0 +1,19 @@
|
||||
.public-courses-page {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 20px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
.summary-wrapper {
|
||||
width: 304px;
|
||||
height: 798px;
|
||||
border-radius: 8px;
|
||||
background-color: #fff;
|
||||
box-sizing: border-box;
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
14
src/pages/PublicCourses/index.jsx
Normal file
14
src/pages/PublicCourses/index.jsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import CoursesVideoPlayer from "@/components/CoursesVideoPlayer";
|
||||
import LiveSummary from "@/components/LiveSummary";
|
||||
import "./index.css";
|
||||
|
||||
const PublicCourses = () => {
|
||||
return (
|
||||
<div className="public-courses-page">
|
||||
<CoursesVideoPlayer />
|
||||
<LiveSummary />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default PublicCourses;
|
||||
Reference in New Issue
Block a user