2025-08-17 00:49:04 +08:00
|
|
|
import CoursesVideoPlayer from "@/components/CoursesVideoPlayer";
|
|
|
|
|
import CourseList from "@/components/CourseList";
|
2025-08-15 16:16:41 +08:00
|
|
|
import StageProgress from "@/components/StageProgress";
|
|
|
|
|
import "./index.css";
|
|
|
|
|
|
|
|
|
|
const LivePage = () => {
|
|
|
|
|
return (
|
2025-08-17 00:49:04 +08:00
|
|
|
<div className="live-page">
|
|
|
|
|
<StageProgress />
|
|
|
|
|
<div className="live-page-content">
|
|
|
|
|
<CoursesVideoPlayer />
|
|
|
|
|
<CourseList />
|
2025-08-15 16:16:41 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default LivePage;
|