2025-06-05 22:51:44 +08:00
|
|
|
import React from 'react';
|
2025-06-08 22:50:52 +08:00
|
|
|
import Navbar from './navbar/page';
|
|
|
|
import NewPage from './qjsx/page';
|
2025-06-09 21:40:05 +08:00
|
|
|
import LearnPage from './xxjxs/page';
|
|
|
|
import JcdtContainer from './jcdt/page';
|
2025-06-05 22:51:44 +08:00
|
|
|
const Content: React.FC = () => {
|
2025-06-08 22:50:52 +08:00
|
|
|
return (
|
2025-06-09 21:40:05 +08:00
|
|
|
// style={{ backgroundColor: '#e0dbdb' }}
|
2025-06-08 22:50:52 +08:00
|
|
|
<div
|
|
|
|
className="w-[1920px] min-h-[calc(100vh-704px-758px)] relative left-1/2 transform -translate-x-1/2 bg-center flex justify-center items-center"
|
2025-06-10 15:12:33 +08:00
|
|
|
|
2025-06-08 22:50:52 +08:00
|
|
|
>
|
2025-06-11 09:55:47 +08:00
|
|
|
<div className="w-[1514px] h-full">
|
2025-06-08 22:50:52 +08:00
|
|
|
<Navbar />
|
|
|
|
<NewPage />
|
2025-06-09 21:40:05 +08:00
|
|
|
<LearnPage />
|
|
|
|
<div className="w-[1920px] ml-[35px] transform -translate-x-1/8 ">
|
|
|
|
<JcdtContainer />
|
|
|
|
</div>
|
2025-06-08 22:50:52 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
2025-06-05 22:51:44 +08:00
|
|
|
};
|
|
|
|
|
2025-06-08 22:50:52 +08:00
|
|
|
export default Content;
|