feat: 🎸 新增了一些页面
This commit is contained in:
@@ -15,6 +15,7 @@ const navigation = {
|
||||
{
|
||||
title: "课程区块",
|
||||
items: [
|
||||
{ name: "📺 公共课直播间", path: "/public-courses" },
|
||||
{ name: "📺 课程直播间", path: "/live" },
|
||||
{ name: "🌳 就业管家知识树", path: "/career-tree" },
|
||||
{ name: "📝 课后作业", path: "/homework" },
|
||||
|
||||
@@ -264,6 +264,7 @@
|
||||
transition: margin-left 0.3s ease;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background-color: #f2f3f5;
|
||||
}
|
||||
|
||||
/* 当侧边栏折叠时的主内容区域 */
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user