feat: 🎸 新增了一些页面

This commit is contained in:
2025-08-16 01:01:57 +08:00
parent 182abccc60
commit ee6e2da964
27 changed files with 747 additions and 109 deletions

View File

@@ -15,6 +15,7 @@ const navigation = {
{
title: "课程区块",
items: [
{ name: "📺 公共课直播间", path: "/public-courses" },
{ name: "📺 课程直播间", path: "/live" },
{ name: "🌳 就业管家知识树", path: "/career-tree" },
{ name: "📝 课后作业", path: "/homework" },

View File

@@ -264,6 +264,7 @@
transition: margin-left 0.3s ease;
display: flex;
flex-direction: column;
background-color: #f2f3f5;
}
/* 当侧边栏折叠时的主内容区域 */

View File

@@ -1,7 +1,6 @@
import { useState, useEffect } from "react";
import Sidebar from "./Sidebar";
import "./index.css";
// import ResumeInfoModal from "@/pages/CompanyJobsPage/components/ResumeInfoModal";
const Layout = ({ children }) => {
const [isCollapsed, setIsCollapsed] = useState(() => {
@@ -38,7 +37,6 @@ const Layout = ({ children }) => {
>
{children}
</main>
{/* <ResumeInfoModal visible={true} /> */}
</div>
);
};