fenghuo/apps/web/components/content/page.tsx

26 lines
674 B
TypeScript
Raw Normal View History

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-08 22:50:52 +08:00
>
<div className="w-[1514px] h-[10000px]">
<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;